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

buildPythonPackage rec {
  pname = "musicbrainzngs";
  version = "0.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1dddarpjawryll2wss65xq3v9q8ln8dan7984l5dxzqx88d2dvr8";
  };

  buildInputs = [ pkgs.glibcLocales ];

  LC_ALL="en_US.UTF-8";

  meta = with stdenv.lib; {
    homepage = http://alastair/python-musicbrainz-ngs;
    description = "Python bindings for musicbrainz NGS webservice";
    license = licenses.bsd2;
    maintainers = with maintainers; [ domenkozar ];
  };

}