1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "python-musicpd"; 8 version = "0.8.0"; 9 10 src = fetchPypi { 11 inherit pname; 12 inherit version; 13 sha256 = "sha256-5Br4rZO1c/pPmAZ/UecYjuVLttR8R+xeReKsc/xnaeI="; 14 }; 15 16 format = "setuptools"; 17 18 doCheck = true; 19 20 meta = with lib; { 21 description = "An MPD (Music Player Daemon) client library written in pure Python."; 22 homepage = "https://gitlab.com/kaliko/python-musicpd"; 23 license = licenses.lgpl3Plus; 24 maintainers = with lib.maintainers; [ apfelkuchen6 ]; 25 }; 26}