summary refs log tree commit diff
path: root/pkgs/development/python-modules/mpd/default.nix
blob: b535144fac91147b44041d26ca58940f724d9a61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  pname = "python-mpd";
  version = "0.3.0";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "02812eba1d2e0f46e37457f5a6fa23ba203622e4bcab0a19b265e66b08cd21b4";
  };

  meta = with lib; {
    description = "An MPD (Music Player Daemon) client library written in pure Python";
    homepage = "http://jatreuman.indefero.net/p/python-mpd/";
    license = licenses.gpl3;
  };

}