nixpkgs/pkgs/development/python-modules/translationstring/default.nix

23 lines
511 B
Nix
Raw Normal View History

{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "translationstring";
2020-08-16 18:31:18 +01:00
version = "1.4";
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:18 +01:00
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 ];
};
}