summary refs log tree commit diff
path: root/pkgs/development/python-modules/cddb/default.nix
blob: f40ff08fcf42163160db25fe2ba8bcd03c85acb1 (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
24
{ stdenv
, buildPythonPackage
, pkgs
, isPy3k
}:

buildPythonPackage rec {
  name = "CDDB-1.4";
  disabled = isPy3k;

  buildInputs = stdenv.lib.optionals stdenv.isDarwin [ pkgs.darwin.apple_sdk.frameworks.IOKit ];

  src = pkgs.fetchurl {
    url = "http://cddb-py.sourceforge.net/${name}.tar.gz";
    sha256 = "098xhd575ibvdx7i3dny3lwi851yxhjg2hn5jbbgrwj833rg5l5w";
  };

  meta = with stdenv.lib; {
    homepage = http://cddb-py.sourceforge.net/;
    description = "CDDB and FreeDB audio CD track info access";
    license = licenses.gpl2Plus;
  };

}