pythonPackages.PyICU: 2.0.3 -> 2.2

This commit is contained in:
Robert Helgesson 2018-11-02 23:10:17 +01:00
parent 811509e5a3
commit 2db8372554
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -4454,21 +4454,21 @@ in {
};
PyICU = buildPythonPackage rec {
name = "PyICU-2.0.3";
name = "PyICU-2.2";
src = pkgs.fetchurl {
url = "mirror://pypi/P/PyICU/${name}.tar.gz";
sha256 = "0pzss3l0b0vcsyr7wlqdd6pkcqldspajfgd9k2iijf6r152d2ln4";
sha256 = "0wq9y5fi1ighgf5aws9nr87vi1w44p7q1k83rx2y3qj5d2xyhspa";
};
patches = [
(pkgs.fetchpatch {
url = https://sources.debian.org/data/main/p/pyicu/2.0.3-1/debian/patches/icu_test.patch;
url = https://sources.debian.org/data/main/p/pyicu/2.2-1/debian/patches/icu_test.patch;
sha256 = "1iavdkyqixm9i753svl17barla93b7jzgkw09dn3hnggamx7zwx9";
})
];
buildInputs = [ pkgs.icu self.pytest ];
buildInputs = [ pkgs.icu60 self.pytest ];
propagatedBuildInputs = [ self.six ];