Merge pull request #155219 from gador/speaklater3-init

This commit is contained in:
Sandro 2022-01-18 19:49:02 +01:00 committed by GitHub
commit b30d675094
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -9162,6 +9162,8 @@ in {
speaklater = callPackage ../development/python-modules/speaklater { };
speaklater3 = callPackage ../development/python-modules/speaklater3 { };
spectral-cube = callPackage ../development/python-modules/spectral-cube { };
speedtest-cli = callPackage ../development/python-modules/speedtest-cli { };