From 3d7cefca12eacfe9085101ae2b46f02367e8ddda Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Sat, 22 Nov 2025 12:56:19 -0500 Subject: [PATCH] python313Packages.heudiconv: 1.3.3 -> 1.3.4 --- .../python-modules/heudiconv/default.nix | 16 ++++++++-------- 1 file 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 ]; }; }