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