2019-11-12 12:09:18 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pytz, pytest, freezegun, glibcLocales }:
|
2018-04-05 19:58:14 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Babel";
|
2019-10-24 06:47:22 +00:00
|
|
|
version = "2.7.0";
|
2018-04-05 19:58:14 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 06:47:22 +00:00
|
|
|
sha256 = "e86135ae101e31e2c8ec20a4e0c5220f4eed12487d5cf3f78be7e98d3a57fc28";
|
2018-04-05 19:58:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pytz ];
|
|
|
|
|
2019-12-30 09:03:10 +00:00
|
|
|
checkInputs = [ pytest 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; {
|
|
|
|
homepage = http://babel.edgewall.org;
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|