python313Packages.medvol: modernize

This commit is contained in:
Fabian Affolter
2025-12-25 11:11:44 +01:00
committed by GitHub
parent b43cadbc6e
commit bf7801183b
@@ -1,7 +1,6 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
numpy,
@@ -13,12 +12,10 @@ buildPythonPackage rec {
version = "0.0.18";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "MIC-DKFZ";
repo = "medvol";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-PUZZRF5KzfvwI335H1tnUtGa2+zdnL6J5NArqQWL7tM=";
};
@@ -36,7 +33,7 @@ buildPythonPackage rec {
meta = {
description = "Wrapper for loading medical 3D image volumes such as NIFTI or NRRD images";
homepage = "https://github.com/MIC-DKFZ/medvol";
changelog = "https://github.com/MIC-DKFZ/MedVol/releases/tag/v${version}";
changelog = "https://github.com/MIC-DKFZ/MedVol/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bcdarwin ];
};