depot/third_party/nixpkgs/pkgs/development/python-modules/speaklater3/default.nix
Default email 4cb23072fc Project import generated by Copybara.
GitOrigin-RevId: 6d8215281b2f87a5af9ed7425a26ac575da0438f
2022-01-20 00:45:15 +01:00

23 lines
516 B
Nix

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