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

buildPythonPackage rec {
  pname = "speaklater";
  version = "1.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1ab5dbfzzgz6cnz4xlwx79gz83id4bhiw67k1cgqrlzfs0va7zjr";
  };

  meta = with stdenv.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; [ matejc ];
  };

}