blob: cc4ab6b722f0af9009368c3e7ce2fef2f90b7496 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "python-musicpd";
version = "0.8.0";
src = fetchPypi {
inherit pname;
inherit version;
sha256 = "sha256-5Br4rZO1c/pPmAZ/UecYjuVLttR8R+xeReKsc/xnaeI=";
};
format = "setuptools";
doCheck = true;
meta = with lib; {
description = "An 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 ];
};
}
|