Unverified Commit bf780118 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.medvol: modernize

parent b43cadbc
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
{
  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 ];
  };