Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / translationstring / default.nix
blobab6c1808e428ddff63662e10281197ae9e679f4d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "translationstring";
8   version = "1.4";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "bf947538d76e69ba12ab17283b10355a9ecfbc078e6123443f43f2107f6376f3";
14   };
16   meta = with lib; {
17     homepage = "https://pylonsproject.org/";
18     description = "Utility library for i18n relied on by various Repoze and Pyramid packages";
19     license = licenses.bsd0;
20     maintainers = with maintainers; [ domenkozar ];
21   };