Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 494 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5}: 6 7buildPythonPackage rec { 8 pname = "python-mpd"; 9 version = "0.3.0"; 10 disabled = isPy3k; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "02812eba1d2e0f46e37457f5a6fa23ba203622e4bcab0a19b265e66b08cd21b4"; 15 }; 16 17 meta = with stdenv.lib; { 18 description = "An MPD (Music Player Daemon) client library written in pure Python"; 19 homepage = http://jatreuman.indefero.net/p/python-mpd/; 20 license = licenses.gpl3; 21 }; 22 23}