diff options
| author | Aleksana <alexander.huang.y@gmail.com> | 2025-11-24 13:28:29 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-24 13:28:29 +0000 |
| commit | 6c67c652ccc19626049204cd0f135ca53258dadf (patch) | |
| tree | bcfcaf1b6bd50521f1cf66646b599a8e20e5a92f /pkgs/development/python-modules | |
| parent | df12fa51128c01f1d56063dc1d53bd1484342cc6 (diff) | |
| parent | 3d7cefca12eacfe9085101ae2b46f02367e8ddda (diff) | |
python313Packages.heudiconv: 1.3.3 -> 1.3.4 (#464056)
Diffstat (limited to 'pkgs/development/python-modules')
| -rw-r--r-- | pkgs/development/python-modules/heudiconv/default.nix | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/heudiconv/default.nix b/pkgs/development/python-modules/heudiconv/default.nix index 574361a93c78..78429686aa7e 100644 --- a/pkgs/development/python-modules/heudiconv/default.nix +++ b/pkgs/development/python-modules/heudiconv/default.nix @@ -13,21 +13,18 @@ nipype, pydicom, pytestCheckHook, - pythonOlder, setuptools, versioningit, }: buildPythonPackage rec { pname = "heudiconv"; - version = "1.3.3"; + version = "1.3.4"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchPypi { inherit pname version; - hash = "sha256-SnYysTsQUagXH8CCPgNoca2ls47XUguE/pJD2wc1tro="; + hash = "sha256-zT/xy9f0GBmhGJm4Gd0ZEKNSifBBjx0RmTOqq6qN4ao="; }; postPatch = '' @@ -66,13 +63,16 @@ buildPythonPackage rec { disabledTests = [ # No such file or directory "test_bvals_are_zero" + + # tries to access internet + "test_partial_xa_conversion" ]; - meta = with lib; { + meta = { description = "Flexible DICOM converter for organizing imaging data"; homepage = "https://heudiconv.readthedocs.io"; changelog = "https://github.com/nipy/heudiconv/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } |
