pythonPackages.batchgenerators: loosen version restrictions for pillow
apply patch from https://github.com/MIC-DKFZ/batchgenerators/pull/59 to allow batchgenerators to build with pillow 7.1.2+
This commit is contained in:
parent
510c52e16c
commit
4993bad67c
1 changed files with 8 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, isPy27
|
, isPy27
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, pytest
|
, pytest
|
||||||
, unittest2
|
, unittest2
|
||||||
, future
|
, future
|
||||||
|
@ -27,6 +28,13 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/MIC-DKFZ/batchgenerators/pull/59.patch";
|
||||||
|
sha256 = "171b3dm40yn0wi91m9s2nq3j565s1w39jpdf1mvc03rn75i8vdp0";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
future numpy pillow scipy scikitlearn scikitimage threadpoolctl
|
future numpy pillow scipy scikitlearn scikitimage threadpoolctl
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue