2021-03-08 11:42:53 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pytz, pytestCheckHook, freezegun }:
|
2018-04-05 20:58:14 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Babel";
|
2021-06-18 22:47:09 +01:00
|
|
|
version = "2.9.1";
|
2018-04-05 20:58:14 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:09 +01:00
|
|
|
sha256 = "bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0";
|
2018-04-05 20:58:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pytz ];
|
|
|
|
|
2021-03-08 11:42:53 +00:00
|
|
|
checkInputs = [ pytestCheckHook freezegun ];
|
2018-06-12 17:24:41 +01:00
|
|
|
|
2019-11-12 12:09:18 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2018-04-05 20:58:14 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://babel.edgewall.org";
|
2018-04-05 20:58:14 +01:00
|
|
|
description = "A collection of tools for internationalizing Python applications";
|
|
|
|
license = licenses.bsd3;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-04-05 20:58:14 +01:00
|
|
|
};
|
|
|
|
}
|