about summary refs log tree commit diff
path: root/pkgs/development/python-modules/nibabel/default.nix
blob: 751cc1395483d5720cc25d55d206c966a66080eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, nose
, pytest
, numpy
, h5py
, pydicom
, scipy
}:

buildPythonPackage rec {
  pname = "nibabel";
  version = "3.0.1";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "08nlny8vzkpjpyb0q943cq57m2s4wndm86chvd3d5qvar9z6b36k";
  };

  propagatedBuildInputs = [ numpy scipy h5py pydicom ];

  checkInputs = [ nose pytest ];

  checkPhase = ''
    nosetests
  '';

  meta = with lib; {
    homepage = "https://nipy.org/nibabel";
    description = "Access a multitude of neuroimaging data formats";
    license = licenses.mit;
    maintainers = with maintainers; [ ashgillman ];
    platforms = platforms.x86_64;  # https://github.com/nipy/nibabel/issues/861
  };
}