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

buildPythonPackage rec {
  pname = "polib";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "fad87d13696127ffb27ea0882d6182f1a9cf8a5e2b37a587751166c51e5a332a";
  };

  # error: invalid command 'test'
  doCheck = false;

  meta = with stdenv.lib; {
    description = "A library to manipulate gettext files (po and mo files)";
    homepage = https://bitbucket.org/izi/polib/;
    license = licenses.mit;
  };
}