14 buildPythonPackage rec {
17 format = "setuptools";
19 disabled = pythonOlder "3.6";
21 src = fetchFromGitHub {
24 rev = "refs/tags/${version}";
25 hash = "sha256-sfqCK2r9Io1gDDHL9s9R37J0h9KcOQML3B2zJx2+QuA=";
33 propagatedBuildInputs = [
41 # disable tests for now due to:
42 # - some tests require data download (see dipy/dipy/issues/2092);
43 # - running the tests manually causes a multiprocessing hang;
44 # - import weirdness when running the tests
47 pythonImportsCheck = [
67 homepage = "https://dipy.org/";
68 description = "Diffusion imaging toolkit for Python";
69 changelog = "https://github.com/dipy/dipy/blob/${version}/Changelog";
70 license = licenses.bsd3;
71 maintainers = with maintainers; [ bcdarwin ];