ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / nibabel / default.nix
blobf30f3f56f2249de0d337f6eba11157a37fbea307
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 , packaging
6 , pytestCheckHook
7 , nose
8 , numpy
9 , h5py
10 , pydicom
11 , scipy
14 buildPythonPackage rec {
15   pname = "nibabel";
16   version = "4.0.2";
17   disabled = isPy27;
19   src = fetchPypi {
20     inherit pname version;
21     sha256 = "sha256-RcSbU0k1G0X2wEWpGqArTw02dob/MoRjLvlaxluTB4Y=";
22   };
24   propagatedBuildInputs = [ numpy scipy h5py packaging pydicom ];
26   checkInputs = [
27     pytestCheckHook
28   ];
30   disabledTests = [
31     # https://github.com/nipy/nibabel/issues/951
32     "test_filenames"
33   ];
35   meta = with lib; {
36     homepage = "https://nipy.org/nibabel";
37     description = "Access a multitude of neuroimaging data formats";
38     license = licenses.mit;
39     maintainers = with maintainers; [ ashgillman ];
40   };