mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-22 16:00:41 +08:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
28 lines
592 B
Nix
28 lines
592 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-musicpd";
|
|
version = "0.9.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "python_musicpd";
|
|
inherit version;
|
|
hash = "sha256-RFYIVDTy492sfp68sjO0MFKcHI9Gxt25Ixdu8iiOlTo=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
meta = {
|
|
description = "MPD (Music Player Daemon) client library written in pure Python";
|
|
homepage = "https://gitlab.com/kaliko/python-musicpd";
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = with lib.maintainers; [ apfelkuchen6 ];
|
|
};
|
|
}
|