Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 489 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "polib"; 5 version = "1.1.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "fad87d13696127ffb27ea0882d6182f1a9cf8a5e2b37a587751166c51e5a332a"; 10 }; 11 12 # error: invalid command 'test' 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 description = "A library to manipulate gettext files (po and mo files)"; 17 homepage = "https://bitbucket.org/izi/polib/"; 18 license = licenses.mit; 19 }; 20}