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