27 lines
565 B
Nix
27 lines
565 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|