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

23 lines
575 B
Nix
Raw Normal View History

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