Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 615 B view raw
1{ stdenv, lib, buildPythonPackage, fetchPypi, pytz, pytestCheckHook, freezegun }: 2 3buildPythonPackage rec { 4 pname = "Babel"; 5 version = "2.9.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "018yg7g2pa6vjixx1nx41cfispgfi0azzp0a1chlycbj8jsil0ys"; 10 }; 11 12 propagatedBuildInputs = [ pytz ]; 13 14 checkInputs = [ pytestCheckHook freezegun ]; 15 16 doCheck = !stdenv.isDarwin; 17 18 meta = with lib; { 19 homepage = "http://babel.edgewall.org"; 20 description = "A collection of tools for internationalizing Python applications"; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ ]; 23 }; 24}