depot/third_party/nixpkgs/pkgs/development/python-modules/translationstring/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
503 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "translationstring";
version = "1.4";
src = fetchPypi {
inherit pname version;
sha256 = "bf947538d76e69ba12ab17283b10355a9ecfbc078e6123443f43f2107f6376f3";
};
meta = with lib; {
homepage = "https://pylonsproject.org/";
description = "Utility library for i18n relied on by various Repoze and Pyramid packages";
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}