1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "python-musicpd";
10 version = "0.9.0";
11
12 src = fetchPypi {
13 inherit pname;
14 inherit version;
15 hash = "sha256-/FdM0UolVqhJNpS60Q/nra1hSHKL/LiSMX7/Hcipwco=";
16 };
17
18 pyproject = true;
19
20 build-system = [ setuptools ];
21
22 doCheck = true;
23
24 meta = with lib; {
25 description = "MPD (Music Player Daemon) client library written in pure Python";
26 homepage = "https://gitlab.com/kaliko/python-musicpd";
27 license = licenses.lgpl3Plus;
28 maintainers = with lib.maintainers; [ apfelkuchen6 ];
29 };
30}