blob: e5ed4cd9b2b3eb6d1f1a6ce8aeac3d16816bee5f (
about) (
plain)
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
27
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "python-musicpd";
version = "0.9.1";
pyproject = true;
src = fetchPypi {
pname = "python_musicpd";
inherit version;
hash = "sha256-zKjazEIxja6/tPWFXQhEYlLd1Jl8py9wirKsoDXeGu4=";
};
build-system = [ setuptools ];
meta = with lib; {
description = "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 ];
};
}
|