about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-05-01 14:46:10 +0200
committerGitHub <noreply@github.com>2023-05-01 14:46:10 +0200
commitb54d45dca0b09512997d29a84051f9cdb4027d60 (patch)
treec915e3696ebe787dcdb1d1dbd22ff8aa55cb46e8
parent4faf10e97859351984739953fbf52ff498ff384f (diff)
downloadnixlib-b54d45dca0b09512997d29a84051f9cdb4027d60.tar
nixlib-b54d45dca0b09512997d29a84051f9cdb4027d60.tar.gz
nixlib-b54d45dca0b09512997d29a84051f9cdb4027d60.tar.bz2
nixlib-b54d45dca0b09512997d29a84051f9cdb4027d60.tar.lz
nixlib-b54d45dca0b09512997d29a84051f9cdb4027d60.tar.xz
nixlib-b54d45dca0b09512997d29a84051f9cdb4027d60.tar.zst
nixlib-b54d45dca0b09512997d29a84051f9cdb4027d60.zip
python311Packages.dipy: add changelog to meta
-rw-r--r--pkgs/development/python-modules/dipy/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/dipy/default.nix b/pkgs/development/python-modules/dipy/default.nix
index f8b3b169d5b4..22290b692240 100644
--- a/pkgs/development/python-modules/dipy/default.nix
+++ b/pkgs/development/python-modules/dipy/default.nix
@@ -3,7 +3,6 @@
 , fetchFromGitHub
 , pythonOlder
 , packaging
-, pytest
 , cython
 , numpy
 , scipy
@@ -15,6 +14,7 @@
 buildPythonPackage rec {
   pname = "dipy";
   version = "1.7.0";
+  format = "setuptools";
 
   disabled = pythonOlder "3.6";
 
@@ -25,7 +25,11 @@ buildPythonPackage rec {
     hash = "sha256-sfqCK2r9Io1gDDHL9s9R37J0h9KcOQML3B2zJx2+QuA=";
   };
 
-  nativeBuildInputs = [ cython packaging ];
+  nativeBuildInputs = [
+    cython
+    packaging
+  ];
+
   propagatedBuildInputs = [
     numpy
     scipy
@@ -34,8 +38,6 @@ buildPythonPackage rec {
     tqdm
   ];
 
-  nativeCheckInputs = [ pytest ];
-
   # disable tests for now due to:
   #   - some tests require data download (see dipy/dipy/issues/2092);
   #   - running the tests manually causes a multiprocessing hang;
@@ -64,6 +66,7 @@ buildPythonPackage rec {
   meta = with lib; {
     homepage = "https://dipy.org/";
     description = "Diffusion imaging toolkit for Python";
+    changelog = "https://github.com/dipy/dipy/blob/${version}/Changelog";
     license = licenses.bsd3;
     maintainers = with maintainers; [ bcdarwin ];
   };