lol

python3Packages.batchgenerators: init at 0.19.7

authored by

Ben Darwin and committed by
Frederik Rietdijk
61b61ed0 45d01095

+40
+38
pkgs/development/python-modules/batchgenerators/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , isPy27 4 + , fetchPypi 5 + , pytest 6 + , unittest2 7 + , future 8 + , numpy 9 + , scipy 10 + , scikitlearn 11 + , scikitimage 12 + , threadpoolctl 13 + }: 14 + 15 + 16 + buildPythonPackage rec { 17 + pname = "batchgenerators"; 18 + version = "0.19.7"; 19 + 20 + disabled = isPy27; 21 + 22 + src = fetchPypi { 23 + inherit pname version; 24 + sha256 = "0qqzwqf5r0q6jh8avz4f9kf8x96crvdnkznhf24pbm0faf8yk67q"; 25 + }; 26 + 27 + propagatedBuildInputs = [ future numpy scipy scikitlearn scikitimage threadpoolctl ]; 28 + checkInputs = [ pytest unittest2 ]; 29 + 30 + checkPhase = "pytest tests"; 31 + 32 + meta = { 33 + description = "2D and 3D image data augmentation for deep learning"; 34 + homepage = "https://github.com/MIC-DKFZ/batchgenerators"; 35 + license = lib.licenses.asl20; 36 + maintainers = with lib.maintainers; [ bcdarwin ]; 37 + }; 38 + }
+2
pkgs/top-level/python-packages.nix
··· 1803 1803 1804 1804 base58 = callPackage ../development/python-modules/base58 {}; 1805 1805 1806 + batchgenerators = callPackage ../development/python-modules/batchgenerators { }; 1807 + 1806 1808 batinfo = callPackage ../development/python-modules/batinfo {}; 1807 1809 1808 1810 bcdoc = callPackage ../development/python-modules/bcdoc {};