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

25 lines
615 B
Nix
Raw Normal View History

{ stdenv, lib, buildPythonPackage, fetchPypi, pytz, pytestCheckHook, freezegun }:
2018-04-05 19:58:14 +00:00
buildPythonPackage rec {
pname = "Babel";
version = "2.9.0";
2018-04-05 19:58:14 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "018yg7g2pa6vjixx1nx41cfispgfi0azzp0a1chlycbj8jsil0ys";
2018-04-05 19:58:14 +00:00
};
propagatedBuildInputs = [ pytz ];
checkInputs = [ pytestCheckHook freezegun ];
2018-06-12 16:24:41 +00:00
doCheck = !stdenv.isDarwin;
2018-04-05 19:58:14 +00:00
meta = with lib; {
homepage = "http://babel.edgewall.org";
2018-04-05 19:58:14 +00:00
description = "A collection of tools for internationalizing Python applications";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
2018-04-05 19:58:14 +00:00
};
}