nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python311Packages.dipy: add changelog to meta

authored by

Fabian Affolter and committed by
GitHub
b54d45dc 4faf10e9

+7 -4
+7 -4
pkgs/development/python-modules/dipy/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pythonOlder 5 5 , packaging 6 - , pytest 7 6 , cython 8 7 , numpy 9 8 , scipy ··· 14 15 buildPythonPackage rec { 15 16 pname = "dipy"; 16 17 version = "1.7.0"; 18 + format = "setuptools"; 17 19 18 20 disabled = pythonOlder "3.6"; 19 21 ··· 25 25 hash = "sha256-sfqCK2r9Io1gDDHL9s9R37J0h9KcOQML3B2zJx2+QuA="; 26 26 }; 27 27 28 - nativeBuildInputs = [ cython packaging ]; 28 + nativeBuildInputs = [ 29 + cython 30 + packaging 31 + ]; 32 + 29 33 propagatedBuildInputs = [ 30 34 numpy 31 35 scipy ··· 37 33 nibabel 38 34 tqdm 39 35 ]; 40 - 41 - nativeCheckInputs = [ pytest ]; 42 36 43 37 # disable tests for now due to: 44 38 # - some tests require data download (see dipy/dipy/issues/2092); ··· 66 64 meta = with lib; { 67 65 homepage = "https://dipy.org/"; 68 66 description = "Diffusion imaging toolkit for Python"; 67 + changelog = "https://github.com/dipy/dipy/blob/${version}/Changelog"; 69 68 license = licenses.bsd3; 70 69 maintainers = with maintainers; [ bcdarwin ]; 71 70 };