lol

python3Packages.speaklater3: init at 1.4

needed for pgadmin4 init
https://github.com/NixOS/nixpkgs/pull/154764

+25
+23
pkgs/development/python-modules/speaklater3/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "speaklater3"; 8 + version = "1.4"; 9 + 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "ySYdS2taMEZyMS0esImb4Cj6yRdgGQqA/szTHTo7UEI="; 13 + }; 14 + 15 + pythonImportsCheck = [ "speaklater" ]; 16 + 17 + meta = with lib; { 18 + description = "Implements a lazy string for python useful for use with gettext"; 19 + homepage = "https://github.com/mitsuhiko/speaklater"; 20 + license = licenses.bsd0; 21 + maintainers = with maintainers; [ gador ]; 22 + }; 23 + }
+2
pkgs/top-level/python-packages.nix
··· 9156 9156 9157 9157 speaklater = callPackage ../development/python-modules/speaklater { }; 9158 9158 9159 + speaklater3 = callPackage ../development/python-modules/speaklater3 { }; 9160 + 9159 9161 spectral-cube = callPackage ../development/python-modules/spectral-cube { }; 9160 9162 9161 9163 speedtest-cli = callPackage ../development/python-modules/speedtest-cli { };