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