summary refs log tree commit diff
path: root/pkgs/development/python-modules/hsaudiotag/default.nix
blob: fba71dc3f109c3deaa8f3067c1604e25ede4bfef (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
{ lib, 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 lib; {
    description = "A pure Python library that lets one to read metadata from media files";
    homepage = "http://hg.hardcoded.net/hsaudiotag/";
    license = licenses.bsd3;
  };

}