python3Packages.dicom2nifti: 2.2.8 -> 2.2.12

This commit is contained in:
Ben Darwin 2021-02-22 13:58:43 -05:00
parent 148eff94b3
commit 77b1b20df0

View File

@ -8,11 +8,12 @@
, numpy , numpy
, pydicom , pydicom
, scipy , scipy
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "dicom2nifti"; pname = "dicom2nifti";
version = "2.2.8"; version = "2.2.12";
disabled = isPy27; disabled = isPy27;
# no tests in PyPI dist # no tests in PyPI dist
@ -20,10 +21,10 @@ buildPythonPackage rec {
owner = "icometrix"; owner = "icometrix";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1qi2map6f4pa1l8wsif7ff7rhja6ynrjlm7w306dzvi9l25mia34"; sha256 = "0ddzaw0yasyi2wsh7a6r73cdcmdfbb0nh0k0n4yxp9vnkw1ag5z4";
}; };
propagatedBuildInputs = [ gdcm nibabel numpy pydicom scipy ]; propagatedBuildInputs = [ nibabel numpy pydicom scipy setuptools ];
checkInputs = [ nose gdcm ]; checkInputs = [ nose gdcm ];
checkPhase = "nosetests tests"; checkPhase = "nosetests tests";