python312Packages.nibabel: 5.2.1 -> 5.3.2

This commit is contained in:
Ben Darwin
2025-01-02 15:37:23 -05:00
parent 0557e66482
commit 14729df8ea
@@ -22,22 +22,22 @@
buildPythonPackage rec {
pname = "nibabel";
version = "5.2.1";
version = "5.3.2";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-tsgLLnKOS8K2XxFC2bjSKHqRAqi/hHfhFe8NgzRVmXU=";
hash = "sha256-C9ymUDsceEtEbHRaRUI2fed1bPug1yFDuR+f+3i+Vps=";
};
nativeBuildInputs = [
build-system = [
hatchling
hatch-vcs
];
propagatedBuildInputs = [
dependencies = [
numpy
packaging
] ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
@@ -65,11 +65,6 @@ buildPythonPackage rec {
export PATH=$out/bin:$PATH
'';
disabledTestPaths = lib.optionals (pythonAtLeast "3.12") [
# uses distutils
"nisext/tests/test_sexts.py"
];
meta = with lib; {
homepage = "https://nipy.org/nibabel";
changelog = "https://github.com/nipy/nibabel/blob/${version}/Changelog";