1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "speaklater"; 9 version = "1.3"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1ab5dbfzzgz6cnz4xlwx79gz83id4bhiw67k1cgqrlzfs0va7zjr"; 15 }; 16 17 meta = with lib; { 18 description = "Implements a lazy string for python useful for use with gettext"; 19 homepage = "https://github.com/mitsuhiko/speaklater"; 20 license = licenses.bsd0; 21 maintainers = with maintainers; [ matejc ]; 22 }; 23}