lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.nipype: fix dependencies, minor refactor (#435935)

authored by

Peder Bergebakken Sundt and committed by
GitHub
a9ebc65c 101f44a8

+9 -11
+9 -11
pkgs/development/python-modules/nipype/default.nix
··· 9 9 python-dateutil, 10 10 etelemetry, 11 11 filelock, 12 - funcsigs, 13 - future, 14 12 looseversion, 15 13 mock, 16 14 networkx, ··· 19 17 packaging, 20 18 prov, 21 19 psutil, 20 + puremagic, 22 21 pybids, 23 22 pydot, 24 23 pytest, ··· 42 41 buildPythonPackage rec { 43 42 pname = "nipype"; 44 43 version = "1.10.0"; 45 - disabled = pythonOlder "3.7"; 46 44 format = "setuptools"; 47 45 48 46 src = fetchPypi { ··· 52 50 53 51 postPatch = '' 54 52 substituteInPlace nipype/interfaces/base/tests/test_core.py \ 55 - --replace "/usr/bin/env bash" "${bash}/bin/bash" 53 + --replace-fail "/usr/bin/env bash" "${bash}/bin/bash" 56 54 ''; 57 55 58 56 pythonRelaxDeps = [ "traits" ]; 59 57 60 - propagatedBuildInputs = [ 58 + dependencies = [ 61 59 click 62 60 python-dateutil 63 61 etelemetry 64 62 filelock 65 - funcsigs 66 - future 67 63 looseversion 68 64 networkx 69 65 nibabel ··· 71 67 packaging 72 68 prov 73 69 psutil 70 + puremagic 74 71 pydot 75 72 rdflib 76 73 scipy ··· 97 94 ''; 98 95 pythonImportsCheck = [ "nipype" ]; 99 96 100 - meta = with lib; { 101 - homepage = "https://nipy.org/nipype/"; 97 + meta = { 98 + homepage = "https://nipy.org/nipype"; 102 99 description = "Neuroimaging in Python: Pipelines and Interfaces"; 100 + changelog = "https://github.com/nipy/nipype/releases/tag/${version}"; 103 101 mainProgram = "nipypecli"; 104 - license = licenses.bsd3; 105 - maintainers = with maintainers; [ ashgillman ]; 102 + license = lib.licenses.bsd3; 103 + maintainers = with lib.maintainers; [ ashgillman ]; 106 104 }; 107 105 }