nav: init at 1.2.1 (#356071)
[NixPkgs.git] / pkgs / development / python-modules / python-musicpd / default.nix
blobe5ed4cd9b2b3eb6d1f1a6ce8aeac3d16816bee5f
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "python-musicpd";
10   version = "0.9.1";
11   pyproject = true;
13   src = fetchPypi {
14     pname = "python_musicpd";
15     inherit version;
16     hash = "sha256-zKjazEIxja6/tPWFXQhEYlLd1Jl8py9wirKsoDXeGu4=";
17   };
19   build-system = [ setuptools ];
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   };