From 1c795f46ca9caf5c7143f0095967c6dc991c3949 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Mon, 1 Aug 2022 15:56:58 -0400 Subject: [PATCH] python3Packages.batchgenerators: 0.21 -> 0.24 --- .../batchgenerators/default.nix | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/development/python-modules/batchgenerators/default.nix b/pkgs/development/python-modules/batchgenerators/default.nix index a20d0c696cd6..4fda2f331f6d 100644 --- a/pkgs/development/python-modules/batchgenerators/default.nix +++ b/pkgs/development/python-modules/batchgenerators/default.nix @@ -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; {