lol

python3Packges.pyicu: rename from PyICU

+19 -16
+1 -1
pkgs/applications/misc/gramps/default.nix
··· 29 29 sha256 = "00358nzyw686ypqv45imc5k9frcqnhla0hpx9ynna3iy6iz5006x"; 30 30 }; 31 31 32 - pythonPath = with pythonPackages; [ bsddb3 PyICU pygobject3 pycairo ]; 32 + pythonPath = with pythonPackages; [ bsddb3 pyicu pygobject3 pycairo ]; 33 33 34 34 # Same installPhase as in buildPythonApplication but without --old-and-unmanageble 35 35 # install flag.
+2 -2
pkgs/development/python-modules/agate/default.nix
··· 9 9 , lxml 10 10 , nose 11 11 , parsedatetime 12 - , PyICU 12 + , pyicu 13 13 , python-slugify 14 14 , pytimeparse 15 15 , pythonOlder ··· 46 46 glibcLocales 47 47 lxml 48 48 nose 49 - PyICU 49 + pyicu 50 50 pytz 51 51 ]; 52 52
+2 -2
pkgs/development/python-modules/natsort/default.nix
··· 4 4 , fetchPypi 5 5 , glibcLocales 6 6 , hypothesis 7 - , PyICU 7 + , pyicu 8 8 , pytest-mock 9 9 , pytestCheckHook 10 10 , pythonOlder ··· 24 24 25 25 propagatedBuildInputs = [ 26 26 fastnumbers 27 - PyICU 27 + pyicu 28 28 ]; 29 29 30 30 checkInputs = [
+2 -2
pkgs/development/python-modules/normality/default.nix
··· 4 4 , text-unidecode 5 5 , chardet 6 6 , banal 7 - , PyICU 7 + , pyicu 8 8 , pytestCheckHook 9 9 }: 10 10 buildPythonPackage rec { ··· 22 22 text-unidecode 23 23 chardet 24 24 banal 25 - PyICU 25 + pyicu 26 26 ]; 27 27 28 28 checkInputs = [
+5 -3
pkgs/development/python-modules/pyicu/default.nix
··· 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 - pname = "PyICU"; 10 + pname = "pyicu"; 11 11 version = "2.10.2"; 12 + format = "setuptools"; 12 13 13 14 src = fetchPypi { 14 - inherit pname version; 15 - sha256 = "sha256-DDMJ7qf6toV1B6zmJANRW2D+CWy/tPkNFPVf91xUQcE="; 15 + pname = "PyICU"; 16 + inherit version; 17 + hash = "sha256-DDMJ7qf6toV1B6zmJANRW2D+CWy/tPkNFPVf91xUQcE="; 16 18 }; 17 19 18 20 nativeBuildInputs = [ icu ]; # for icu-config, but should be replaced with pkg-config
+2 -2
pkgs/development/python-modules/slob/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , isPy3k 5 - , PyICU 5 + , pyicu 6 6 , python 7 7 }: 8 8 ··· 18 18 sha256 = "01195hphjnlcvgykw143rf06s6y955sjc1r825a58vhjx7hj54zh"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ PyICU ]; 21 + propagatedBuildInputs = [ pyicu ]; 22 22 23 23 checkPhase = '' 24 24 ${python.interpreter} -m unittest slob
+1 -1
pkgs/servers/matrix-synapse/default.nix
··· 65 65 psycopg2 66 66 pyasn1 67 67 pydantic 68 - PyICU 68 + pyicu 69 69 pyjwt 70 70 pymacaroons 71 71 pynacl
+1 -1
pkgs/servers/nominatim/default.nix
··· 49 49 psycopg2 50 50 psutil 51 51 jinja2 52 - PyICU 52 + pyicu 53 53 datrie 54 54 ]; 55 55
+1 -1
pkgs/tools/misc/xdxf2slob/default.nix
··· 11 11 sha256 = "0m3dnc3816ja3kmik1wabb706dkqdf5sxvabwgf2rcrq891xcddd"; 12 12 }; 13 13 14 - propagatedBuildInputs = [ python3Packages.PyICU python3Packages.slob ]; 14 + propagatedBuildInputs = [ python3Packages.pyicu python3Packages.slob ]; 15 15 16 16 meta = with lib; { 17 17 description = "Tool to convert XDXF dictionary files to slob format";
+1
pkgs/top-level/python-aliases.nix
··· 148 148 pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28 149 149 pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07 150 150 pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07 151 + PyICU = pyicu; # Added 2022-12-22 151 152 pyjson5 = json5; # added 2022-08-28 152 153 pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20 153 154 PyLD = pyld; # added 2022-06-22
+1 -1
pkgs/top-level/python-packages.nix
··· 8013 8013 8014 8014 pyicloud = callPackage ../development/python-modules/pyicloud { }; 8015 8015 8016 - PyICU = callPackage ../development/python-modules/pyicu { }; 8016 + pyicu = callPackage ../development/python-modules/pyicu { }; 8017 8017 8018 8018 pyimpfuzzy = callPackage ../development/python-modules/pyimpfuzzy { 8019 8019 inherit (pkgs) ssdeep;