Merge pull request #114025 from bcdarwin/update-batchgenerators

python3Packages.batchgenerators: 0.20.1 -> 0.21
This commit is contained in:
Sandro 2021-02-25 01:03:49 +01:00 committed by GitHub
commit 48b365162a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,6 @@
, buildPythonPackage
, isPy27
, fetchFromGitHub
, fetchpatch
, pytestCheckHook
, unittest2
, future
@ -16,7 +15,7 @@
buildPythonPackage rec {
pname = "batchgenerators";
version = "0.20.1";
version = "0.21";
disabled = isPy27;
@ -24,18 +23,10 @@ buildPythonPackage rec {
owner = "MIC-DKFZ";
repo = pname;
rev = "v${version}";
sha256 = "1f91yflv9rschyl5bnfn735hp1rxrzcxkx18aajmlzb067h0ip8m";
sha256 = "16bk4r0q3m2c9fawpmj4l7kz0x3fyv1spb92grf44gmyricq3jdb";
};
patches = [
# lift Pillow bound; should be merged in next release
(fetchpatch {
url = "https://github.com/MIC-DKFZ/batchgenerators/pull/59.patch";
sha256 = "171b3dm40yn0wi91m9s2nq3j565s1w39jpdf1mvc03rn75i8vdp0";
})
];
propagatedBuildInputs = [
future numpy pillow scipy scikitlearn scikitimage threadpoolctl
];