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

buildPythonPackage rec {
  pname = "hsaudiotag";
  version = "1.1.1";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "15hgm128p8nysfi0jb127awga3vlj0iw82l50swjpvdh01m7rda8";
  };

  # no tests
  doCheck = false;

  meta = with stdenv.lib; {
    description = "A pure Python library that lets one to read metadata from media files";
    homepage = http://hg.hardcoded.net/hsaudiotag/;
    license = licenses.bsd3;
  };

}