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

buildPythonPackage rec {
  pname = "speaklater3";
  version = "1.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ySYdS2taMEZyMS0esImb4Cj6yRdgGQqA/szTHTo7UEI=";
  };

  pythonImportsCheck = [ "speaklater" ];

  meta = with lib; {
    description = "Implements a lazy string for python useful for use with gettext";
    homepage = "https://github.com/mitsuhiko/speaklater";
    license = licenses.bsd0;
    maintainers = with maintainers; [ gador ];
  };
}