python3Packages.batchgenerators: 0.20.1 -> 0.21

This commit is contained in:
Ben Darwin 2021-02-22 13:44:04 -05:00
parent 148eff94b3
commit 7d16a4f56a

View File

@ -2,7 +2,6 @@
, buildPythonPackage , buildPythonPackage
, isPy27 , isPy27
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, pytestCheckHook , pytestCheckHook
, unittest2 , unittest2
, future , future
@ -16,7 +15,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "batchgenerators"; pname = "batchgenerators";
version = "0.20.1"; version = "0.21";
disabled = isPy27; disabled = isPy27;
@ -24,18 +23,10 @@ buildPythonPackage rec {
owner = "MIC-DKFZ"; owner = "MIC-DKFZ";
repo = pname; repo = pname;
rev = "v${version}"; 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 = [ propagatedBuildInputs = [
future numpy pillow scipy scikitlearn scikitimage threadpoolctl future numpy pillow scipy scikitlearn scikitimage threadpoolctl
]; ];