Merge pull request #184627 from bcdarwin/update-batchgenerators

python3Packages.batchgenerators: 0.21 -> 0.24
This commit is contained in:
Mario Rodas 2022-08-13 01:12:14 -05:00 committed by GitHub
commit 3a89e87abc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "batchgenerators";
version = "0.21";
version = "0.24";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "MIC-DKFZ";
repo = pname;
rev = "v${version}";
hash = "sha256-q8mBWcy+PkJcfiKtq8P2bnTw56FE1suVS0zUgUEmc5k=";
hash = "sha256-47jAeHMJPBk7GpUvXtQuJchgiSy6M50anftsuXWk2ag=";
};
propagatedBuildInputs = [
@ -37,26 +37,26 @@ buildPythonPackage rec {
threadpoolctl
];
checkInputs = [
pytestCheckHook
];
patches = [
# Remove deprecated unittest2, https://github.com/MIC-DKFZ/batchgenerators/pull/78
(fetchpatch {
name = "remove-unittest2.patch";
url = "https://github.com/MIC-DKFZ/batchgenerators/commit/87a9437057df8a7550aa3b3eaf840871cc0d5cef.patch";
sha256 = "sha256-vozBK7g2dLxx9din/R2vU28Mm+LoGAO/BmQlt/ShmEo=";
})
];
# see https://github.com/MIC-DKFZ/batchgenerators/pull/78
postPatch = ''
substituteInPlace setup.py \
--replace '"unittest2",' ""
'';
checkInputs = [
pytestCheckHook
];
# see https://github.com/MIC-DKFZ/batchgenerators/pull/78
disabledTestPaths = [ "tests/test_axis_mirroring.py" ];
pythonImportsCheck = [
"batchgenerators"
"batchgenerators.augmentations"
"batchgenerators.dataloading"
"batchgenerators.datasets"
"batchgenerators.transforms"
"batchgenerators.utilities"
];
meta = with lib; {