lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.nibabel: propagate typing-extensions

+8 -5
+8 -5
pkgs/development/python-modules/nibabel/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - pythonAtLeast, 6 5 pythonOlder, 7 6 hatchling, 8 7 hatch-vcs, 9 8 numpy, 10 9 packaging, 11 10 importlib-resources, 11 + typing-extensions, 12 12 pydicom, 13 13 pillow, 14 14 h5py, ··· 37 37 hatch-vcs 38 38 ]; 39 39 40 - dependencies = [ 41 - numpy 42 - packaging 43 - ] ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ]; 40 + dependencies = 41 + [ 42 + numpy 43 + packaging 44 + ] 45 + ++ lib.optionals (pythonOlder "3.12") [ importlib-resources ] 46 + ++ lib.optionals (pythonOlder "3.13") [ typing-extensions ]; 44 47 45 48 optional-dependencies = rec { 46 49 all = dicom ++ dicomfs ++ minc2 ++ spm ++ zstd;