Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 510 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "translationstring"; 8 version = "1.3"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "4ee44cfa58c52ade8910ea0ebc3d2d84bdcad9fa0422405b1801ec9b9a65b72d"; 13 }; 14 15 meta = with stdenv.lib; { 16 homepage = http://pylonsproject.org/; 17 description = "Utility library for i18n relied on by various Repoze and Pyramid packages"; 18 license = licenses.bsd0; 19 maintainers = with maintainers; [ domenkozar ]; 20 }; 21 22}