mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #287569 from bcdarwin/init-python3-medpy
python311Packages.medpy: init at 0.5.0rc1
This commit is contained in:
commit
f0c23d9ebe
64
pkgs/development/python-modules/medpy/default.nix
Normal file
64
pkgs/development/python-modules/medpy/default.nix
Normal file
@ -0,0 +1,64 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, unittestCheckHook
|
||||
, boost
|
||||
, numpy
|
||||
, scipy
|
||||
, simpleitk
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "medpy";
|
||||
version = "0.5.0rc1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "loli";
|
||||
repo = "medpy";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-W62LjstH42OzNG+vMkuApUWczTNugJGKuuoeeS5ok4U=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
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 = with lib; {
|
||||
description = "Medical image processing library";
|
||||
homepage = "https://loli.github.io/medpy";
|
||||
changelog = "https://github.com/loli/medpy/releases/tag/${version}";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
@ -6977,6 +6977,8 @@ self: super: with self; {
|
||||
|
||||
mediapy = callPackage ../development/python-modules/mediapy { };
|
||||
|
||||
medpy = callPackage ../development/python-modules/medpy { };
|
||||
|
||||
meeko = callPackage ../development/python-modules/meeko { };
|
||||
|
||||
meep = callPackage ../development/python-modules/meep { };
|
||||
|
Loading…
Reference in New Issue
Block a user