1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "translationstring"; 9 version = "1.4"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "bf947538d76e69ba12ab17283b10355a9ecfbc078e6123443f43f2107f6376f3"; 15 }; 16 17 meta = with lib; { 18 homepage = "https://pylonsproject.org/"; 19 description = "Utility library for i18n relied on by various Repoze and Pyramid packages"; 20 license = licenses.bsd0; 21 maintainers = with maintainers; [ ]; 22 }; 23}