nixpkgs/pkgs/development/python-modules/speaklater3/default.nix
florian on nixos (Florian Brandes) 24df24be73 python3Packages.speaklater3: init at 1.4
needed for pgadmin4 init
https://github.com/NixOS/nixpkgs/pull/154764
2022-01-18 13:05:00 +01:00

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