2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-01-16 13:29:42 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-10-07 18:49:17 +01:00
|
|
|
, isPy27
|
2018-01-16 13:29:42 +00:00
|
|
|
# python dependencies
|
|
|
|
, click
|
2021-07-03 12:37:24 +01:00
|
|
|
, python-dateutil
|
2019-12-14 07:43:35 +00:00
|
|
|
, etelemetry
|
|
|
|
, filelock
|
2018-01-16 13:29:42 +00:00
|
|
|
, funcsigs
|
|
|
|
, future
|
|
|
|
, mock
|
|
|
|
, networkx
|
|
|
|
, nibabel
|
|
|
|
, numpy
|
|
|
|
, packaging
|
|
|
|
, prov
|
|
|
|
, psutil
|
2019-08-06 03:09:01 +01:00
|
|
|
, pybids
|
2018-01-16 13:29:42 +00:00
|
|
|
, pydot
|
|
|
|
, pytest
|
2021-07-20 22:08:56 +01:00
|
|
|
, pytest-xdist
|
2018-09-05 12:37:28 +01:00
|
|
|
, pytest-forked
|
2020-10-07 19:02:26 +01:00
|
|
|
, rdflib
|
2018-01-16 13:29:42 +00:00
|
|
|
, scipy
|
|
|
|
, simplejson
|
|
|
|
, traits
|
|
|
|
, xvfbwrapper
|
2021-07-20 21:42:24 +01:00
|
|
|
, pytest-cov
|
2018-03-31 19:43:32 +01:00
|
|
|
, codecov
|
2020-05-05 05:36:05 +01:00
|
|
|
, sphinx
|
2018-01-16 13:29:42 +00:00
|
|
|
# other dependencies
|
|
|
|
, which
|
2018-03-31 19:43:32 +01:00
|
|
|
, bash
|
|
|
|
, glibcLocales
|
2019-01-03 00:39:57 +00:00
|
|
|
, callPackage
|
2020-10-07 19:02:26 +01:00
|
|
|
# causes Python packaging conflict with any package requiring rdflib,
|
|
|
|
# so use the unpatched rdflib by default (disables Nipype provenance tracking);
|
|
|
|
# see https://github.com/nipy/nipype/issues/2888:
|
|
|
|
, useNeurdflib ? false
|
2018-01-16 13:29:42 +00:00
|
|
|
}:
|
|
|
|
|
2019-01-03 00:39:57 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
# This is a temporary convenience package for changes waiting to be merged into the primary rdflib repo.
|
|
|
|
neurdflib = callPackage ./neurdflib.nix { };
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2018-01-16 13:29:42 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nipype";
|
2021-06-18 22:47:27 +01:00
|
|
|
version = "1.6.1";
|
2020-10-07 18:49:17 +01:00
|
|
|
disabled = isPy27;
|
2018-01-16 13:29:42 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:27 +01:00
|
|
|
sha256 = "8428cfc633d8e3b8c5650e241e9eedcf637b7969bcd40f3423334d4c6b0992b5";
|
2018-01-16 13:29:42 +00:00
|
|
|
};
|
|
|
|
|
2018-03-31 19:43:32 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace nipype/interfaces/base/tests/test_core.py \
|
|
|
|
--replace "/usr/bin/env bash" "${bash}/bin/bash"
|
|
|
|
'';
|
|
|
|
|
2020-05-05 05:36:05 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
sphinx
|
|
|
|
];
|
|
|
|
|
2018-01-16 13:29:42 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
2021-07-03 12:37:24 +01:00
|
|
|
python-dateutil
|
2019-12-14 07:43:35 +00:00
|
|
|
etelemetry
|
|
|
|
filelock
|
2018-01-16 13:29:42 +00:00
|
|
|
funcsigs
|
|
|
|
future
|
|
|
|
networkx
|
|
|
|
nibabel
|
|
|
|
numpy
|
|
|
|
packaging
|
|
|
|
prov
|
|
|
|
psutil
|
|
|
|
pydot
|
|
|
|
scipy
|
|
|
|
simplejson
|
|
|
|
traits
|
|
|
|
xvfbwrapper
|
2020-10-07 19:02:26 +01:00
|
|
|
] ++ [ (if useNeurdflib then neurdflib else rdflib) ];
|
2018-01-16 13:29:42 +00:00
|
|
|
|
2019-01-03 00:39:57 +00:00
|
|
|
checkInputs = [
|
2019-08-06 03:09:01 +01:00
|
|
|
pybids
|
2019-01-03 00:39:57 +00:00
|
|
|
codecov
|
|
|
|
glibcLocales
|
|
|
|
mock
|
|
|
|
pytest
|
|
|
|
pytest-forked
|
2021-07-20 22:08:56 +01:00
|
|
|
pytest-xdist
|
2021-07-20 21:42:24 +01:00
|
|
|
pytest-cov
|
2019-01-03 00:39:57 +00:00
|
|
|
which
|
|
|
|
];
|
2018-03-31 19:43:32 +01:00
|
|
|
|
2019-12-14 07:43:35 +00:00
|
|
|
# checks on darwin inspect memory which doesn't work in build environment
|
|
|
|
doCheck = !stdenv.isDarwin;
|
2019-08-06 03:09:01 +01:00
|
|
|
# ignore tests which incorrect fail to detect xvfb
|
2018-03-31 19:43:32 +01:00
|
|
|
checkPhase = ''
|
2020-05-05 05:36:05 +01:00
|
|
|
LC_ALL="en_US.UTF-8" pytest nipype/tests -k 'not display'
|
2018-03-31 19:43:32 +01:00
|
|
|
'';
|
2020-05-05 05:36:05 +01:00
|
|
|
pythonImportsCheck = [ "nipype" ];
|
2018-03-31 19:43:32 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-07 19:13:07 +01:00
|
|
|
homepage = "https://nipy.org/nipype/";
|
2018-01-16 13:29:42 +00:00
|
|
|
description = "Neuroimaging in Python: Pipelines and Interfaces";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ ashgillman ];
|
|
|
|
};
|
|
|
|
}
|