2021-03-08 11:42:53 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pytz, pytestCheckHook, freezegun }:
|
2018-04-05 19:58:14 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Babel";
|
2021-03-08 11:42:53 +00:00
|
|
|
version = "2.9.0";
|
2018-04-05 19:58:14 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-08 11:42:53 +00:00
|
|
|
sha256 = "018yg7g2pa6vjixx1nx41cfispgfi0azzp0a1chlycbj8jsil0ys";
|
2018-04-05 19:58:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pytz ];
|
|
|
|
|
2021-03-08 11:42:53 +00:00
|
|
|
checkInputs = [ pytestCheckHook freezegun ];
|
2018-06-12 16:24:41 +00:00
|
|
|
|
2019-11-12 12:09:18 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2018-04-05 19:58:14 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
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;
|
2019-07-03 09:27:39 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-04-05 19:58:14 +00:00
|
|
|
};
|
|
|
|
}
|