My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/speaklater3/default.nix

23 lines
516 B

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