19 buildPythonPackage rec {
24 disabled = pythonOlder "3.8";
27 inherit pname version;
28 hash = "sha256-lFC9Vqd22ZezJPRd0Yv5bom9jYAWCXT8x1kzP7rqNcI=";
31 nativeBuildInputs = [ hatch-vcs ];
33 nativeCheckInputs = [ pytestCheckHook ];
34 disabledTests = [ "test_clean_confounds" ]; # https://github.com/nilearn/nilearn/issues/2608
35 # do subset of tests which don't fetch resources
36 pytestFlagsArray = [ "nilearn/connectome/tests" ];
38 propagatedBuildInputs = [
51 homepage = "https://nilearn.github.io";
52 description = "Module for statistical learning on neuroimaging data";
53 changelog = "https://github.com/nilearn/nilearn/releases/tag/${version}";
54 license = licenses.bsd3;