2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
setuptools,
|
2023-03-08 16:32:21 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-musicpd";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "0.9.0";
|
2023-03-08 16:32:21 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname;
|
|
|
|
inherit version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-/FdM0UolVqhJNpS60Q/nra1hSHKL/LiSMX7/Hcipwco=";
|
2023-03-08 16:32:21 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
build-system = [ setuptools ];
|
2023-03-08 16:32:21 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "MPD (Music Player Daemon) client library written in pure Python";
|
2023-03-08 16:32:21 +00:00
|
|
|
homepage = "https://gitlab.com/kaliko/python-musicpd";
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with lib.maintainers; [ apfelkuchen6 ];
|
|
|
|
};
|
|
|
|
}
|