nixpkgs/pkgs/development/python-modules/polib/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

21 lines
464 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "polib";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-8++Urv7W4YPjQqiiaa4fxHQroZMYatdvF1k4Yh2/wms=";
};
# 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;
};
}