summary refs log tree commit diff
path: root/pkgs/development/python-modules/polib/default.nix
blob: 00353ac0cca290a672e0e41e7ef719b460965250 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, 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 lib; {
    description = "A library to manipulate gettext files (po and mo files)";
    homepage = "https://bitbucket.org/izi/polib/";
    license = licenses.mit;
  };
}