blob: f4f90cce84e674fc70586eaf77a5d71b5104a775 (
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 = "translationstring";
version = "1.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "bf947538d76e69ba12ab17283b10355a9ecfbc078e6123443f43f2107f6376f3";
};
meta = {
homepage = "https://pylonsproject.org/";
description = "Utility library for i18n relied on by various Repoze and Pyramid packages";
license = lib.licenses.bsd0;
maintainers = [ ];
};
}
|