bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
30 lines
609 B
Nix
30 lines
609 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-musicpd";
|
|
version = "0.9.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname;
|
|
inherit version;
|
|
sha256 = "sha256-/FdM0UolVqhJNpS60Q/nra1hSHKL/LiSMX7/Hcipwco=";
|
|
};
|
|
|
|
pyproject = true;
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
doCheck = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|