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

25 lines
627 B
Nix
Raw Normal View History

{ 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 ];
checkInputs = [ pytestCheckHook freezegun ];
2018-06-12 17:24:41 +01:00
doCheck = !stdenv.isDarwin;
2018-04-05 20:58:14 +01:00
meta = with lib; {
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;
maintainers = with maintainers; [ ];
2018-04-05 20:58:14 +01:00
};
}