1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
unittestCheckHook,
|
|
boost,
|
|
numpy,
|
|
scipy,
|
|
simpleitk,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "medpy";
|
|
version = "0.5.2";
|
|
pyproject = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|