e3065afa44
cc @fridh
29 lines
689 B
Nix
29 lines
689 B
Nix
{ stdenv, lib, buildPythonPackage, fetchPypi, pytz, pytest, freezegun, glibcLocales }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Babel";
|
|
version = "2.7.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e86135ae101e31e2c8ec20a4e0c5220f4eed12487d5cf3f78be7e98d3a57fc28";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pytz ];
|
|
|
|
checkInputs = [ pytest freezegun glibcLocales ];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
preCheck = ''
|
|
export LC_ALL="en_US.UTF-8"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = http://babel.edgewall.org;
|
|
description = "A collection of tools for internationalizing Python applications";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|