Files
nixpkgs/pkgs/development/python-modules/medpy/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

63 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
unittestCheckHook,
boost,
numpy,
scipy,
simpleitk,
}:
buildPythonPackage rec {
pname = "medpy";
version = "0.5.2";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "loli";
repo = "medpy";
tag = version;
hash = "sha256-M46d8qiR3+ioiuRhzIaU5bV1dnfDm819pjn78RYlcG0=";
};
build-system = [ setuptools ];
dependencies = [
boost
numpy
scipy
simpleitk
];
nativeCheckInputs = [ unittestCheckHook ];
preCheck = ''
rm -r medpy/ # prevent importing from build directory at test time
rm -r tests/graphcut_ # SIGILL at test time
'';
pythonImportsCheck = [
"medpy"
"medpy.core"
"medpy.features"
"medpy.filter"
"medpy.graphcut"
"medpy.io"
"medpy.metric"
"medpy.utilities"
];
meta = {
description = "Medical image processing library";
homepage = "https://loli.github.io/medpy";
changelog = "https://github.com/loli/medpy/releases/tag/${version}";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}