1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "python-musicpd";
9 version = "0.9.0";
10
11 src = fetchPypi {
12 inherit pname;
13 inherit version;
14 sha256 = "sha256-/FdM0UolVqhJNpS60Q/nra1hSHKL/LiSMX7/Hcipwco=";
15 };
16
17 format = "setuptools";
18
19 doCheck = true;
20
21 meta = with lib; {
22 description = "An 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}