about summary refs log tree commit diff
path: root/pkgs/development/python-modules/Babel/default.nix
blob: e9dda44997fb688cbd10e39144efd6652c82548f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi, pytz, pytest, freezegun }:

buildPythonPackage rec {
  pname = "Babel";
  version = "2.5.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8ce4cb6fdd4393edd323227cba3a077bceb2a6ce5201c902c65e730046f41f14";
  };

  propagatedBuildInputs = [ pytz ];

  checkInputs = [ pytest freezegun ];

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