about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dicom2nifti
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2021-02-22 13:58:43 -0500
committerBen Darwin <bcdarwin@gmail.com>2021-02-22 14:33:35 -0500
commit77b1b20df03edf54b8ec8880d0cfe44e078dda74 (patch)
treeacd52e24e7085ae24e3fa5a257d05bc1ac8d7a3f /pkgs/development/python-modules/dicom2nifti
parent148eff94b383b5b0bd247e32d03a7d224e142598 (diff)
python3Packages.dicom2nifti: 2.2.8 -> 2.2.12
Diffstat (limited to 'pkgs/development/python-modules/dicom2nifti')
-rw-r--r--pkgs/development/python-modules/dicom2nifti/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/dicom2nifti/default.nix b/pkgs/development/python-modules/dicom2nifti/default.nix
index abc07346efd32..a9c2e4e823733 100644
--- a/pkgs/development/python-modules/dicom2nifti/default.nix
+++ b/pkgs/development/python-modules/dicom2nifti/default.nix
@@ -8,11 +8,12 @@
 , numpy
 , pydicom
 , scipy
+, setuptools
 }:
 
 buildPythonPackage rec {
   pname = "dicom2nifti";
-  version = "2.2.8";
+  version = "2.2.12";
   disabled = isPy27;
 
   # no tests in PyPI dist
@@ -20,10 +21,10 @@ buildPythonPackage rec {
     owner = "icometrix";
     repo = pname;
     rev = version;
-    sha256 = "1qi2map6f4pa1l8wsif7ff7rhja6ynrjlm7w306dzvi9l25mia34";
+    sha256 = "0ddzaw0yasyi2wsh7a6r73cdcmdfbb0nh0k0n4yxp9vnkw1ag5z4";
   };
 
-  propagatedBuildInputs = [ gdcm nibabel numpy pydicom scipy ];
+  propagatedBuildInputs = [ nibabel numpy pydicom scipy setuptools ];
 
   checkInputs = [ nose gdcm ];
   checkPhase = "nosetests tests";