summary refs log blame commit diff
path: root/pkgs/development/python-modules/Babel/default.nix
blob: ef86aedc527bf046dd004fb20757431c71e72797 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                      


                        
                    


                          
                                                                                



                                   
                                     
 

                             



                                                                                     
                                        

    
{ 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 ];

  doCheck = !stdenv.isDarwin;

  meta = with lib; {
    homepage = http://babel.edgewall.org;
    description = "A collection of tools for internationalizing Python applications";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}