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