3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/Babel/default.nix

23 lines
542 B
Nix
Raw Normal View History

2018-04-05 20:58:14 +01:00
{ lib, buildPythonPackage, fetchPypi, pytz, pytest }:
buildPythonPackage rec {
pname = "Babel";
version = "2.3.4";
src = fetchPypi {
inherit pname version;
sha256 = "0x98qqqw35xllpcama013a9788ly84z8dm1w2wwfpxh2710c8df5";
};
propagatedBuildInputs = [ pytz ];
checkInputs = [ pytest ];
meta = with lib; {
homepage = http://babel.edgewall.org;
description = "A collection of tools for internationalizing Python applications";
license = licenses.bsd3;
maintainers = with maintainers; [ garbas ];
};
}