evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / translationstring / default.nix
blob1110c6c58e91018897bdb79050235ffc4204f68e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "translationstring";
9   version = "1.4";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "bf947538d76e69ba12ab17283b10355a9ecfbc078e6123443f43f2107f6376f3";
15   };
17   meta = with lib; {
18     homepage = "https://pylonsproject.org/";
19     description = "Utility library for i18n relied on by various Repoze and Pyramid packages";
20     license = licenses.bsd0;
21     maintainers = with maintainers; [ domenkozar ];
22   };