Skip to content

Commit

Permalink
pythonPackages.batchgenerators: loosen version restrictions for pillow
Browse files Browse the repository at this point in the history
apply patch from MIC-DKFZ/batchgenerators#59 to
allow batchgenerators to build with pillow 7.1.2+
  • Loading branch information
evanjs authored and Jon committed Jun 5, 2020
1 parent 510c52e commit 4993bad
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkgs/development/python-modules/batchgenerators/default.nix
Expand Up @@ -2,6 +2,7 @@
, buildPythonPackage
, isPy27
, fetchFromGitHub
, fetchpatch
, pytest
, unittest2
, future
Expand All @@ -27,6 +28,13 @@ buildPythonPackage rec {

};

patches = [
(fetchpatch {
url = "https://github.com/MIC-DKFZ/batchgenerators/pull/59.patch";
sha256 = "171b3dm40yn0wi91m9s2nq3j565s1w39jpdf1mvc03rn75i8vdp0";
})
];

propagatedBuildInputs = [
future numpy pillow scipy scikitlearn scikitimage threadpoolctl
];
Expand Down

0 comments on commit 4993bad

Please sign in to comment.