Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / polib / default.nix
blob73276d9b659933900884d486bdb3b4b509ef6344
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "polib";
5   version = "1.2.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-8++Urv7W4YPjQqiiaa4fxHQroZMYatdvF1k4Yh2/wms=";
11   };
13   # error: invalid command 'test'
14   doCheck = false;
16   meta = with lib; {
17     description = "A library to manipulate gettext files (po and mo files)";
18     homepage = "https://bitbucket.org/izi/polib/";
19     license = licenses.mit;
20   };