python311Packages.dipy: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-05-01 14:46:10 +02:00 committed by GitHub
parent 4faf10e978
commit b54d45dca0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,6 @@
, fetchFromGitHub , fetchFromGitHub
, pythonOlder , pythonOlder
, packaging , packaging
, pytest
, cython , cython
, numpy , numpy
, scipy , scipy
@ -15,6 +14,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dipy"; pname = "dipy";
version = "1.7.0"; version = "1.7.0";
format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
@ -25,7 +25,11 @@ buildPythonPackage rec {
hash = "sha256-sfqCK2r9Io1gDDHL9s9R37J0h9KcOQML3B2zJx2+QuA="; hash = "sha256-sfqCK2r9Io1gDDHL9s9R37J0h9KcOQML3B2zJx2+QuA=";
}; };
nativeBuildInputs = [ cython packaging ]; nativeBuildInputs = [
cython
packaging
];
propagatedBuildInputs = [ propagatedBuildInputs = [
numpy numpy
scipy scipy
@ -34,8 +38,6 @@ buildPythonPackage rec {
tqdm tqdm
]; ];
nativeCheckInputs = [ pytest ];
# disable tests for now due to: # disable tests for now due to:
# - some tests require data download (see dipy/dipy/issues/2092); # - some tests require data download (see dipy/dipy/issues/2092);
# - running the tests manually causes a multiprocessing hang; # - running the tests manually causes a multiprocessing hang;
@ -64,6 +66,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
homepage = "https://dipy.org/"; homepage = "https://dipy.org/";
description = "Diffusion imaging toolkit for Python"; description = "Diffusion imaging toolkit for Python";
changelog = "https://github.com/dipy/dipy/blob/${version}/Changelog";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ]; maintainers = with maintainers; [ bcdarwin ];
}; };