Files
nixpkgs/pkgs/development/python-modules/python-musicpd/default.nix
Martin Weinelt 266c161842 python312Packages: cleanup instances of doCheck = true
This is implicitly the case, and unless `doCheck` is referenced it makes
no sense setting it.
2024-10-26 01:47:02 +02:00

29 lines
588 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "python-musicpd";
version = "0.9.0";
src = fetchPypi {
inherit pname;
inherit version;
hash = "sha256-/FdM0UolVqhJNpS60Q/nra1hSHKL/LiSMX7/Hcipwco=";
};
pyproject = true;
build-system = [ setuptools ];
meta = with lib; {
description = "MPD (Music Player Daemon) client library written in pure Python";
homepage = "https://gitlab.com/kaliko/python-musicpd";
license = licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ apfelkuchen6 ];
};
}