forked from mirrors/nixpkgs
python310Packages.pymedio: init at 0.2.13
This commit is contained in:
parent
3a1388724e
commit
da9a6959c9
40
pkgs/development/python-modules/pymedio/default.nix
Normal file
40
pkgs/development/python-modules/pymedio/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, pytestCheckHook
|
||||
, numpy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pymedio";
|
||||
version = "0.2.13";
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jcreinhold";
|
||||
repo = "pymedio";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-iHbClOrtYkHT1Nar+5j/ig4Krya8LdQdFB4Mmm5B9bg=";
|
||||
};
|
||||
|
||||
# relax Python dep to work with 3.10.x
|
||||
postPatch = ''
|
||||
substituteInPlace setup.cfg --replace "!=3.10.*," ""
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
|
||||
doCheck = false; # requires SimpleITK python package (not in Nixpkgs)
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pymedio"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Read medical image files into Numpy arrays";
|
||||
homepage = "https://github.com/jcreinhold/pymedio";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
|
@ -8304,6 +8304,8 @@ self: super: with self; {
|
|||
|
||||
pymediaroom = callPackage ../development/python-modules/pymediaroom { };
|
||||
|
||||
pymedio = callPackage ../development/python-modules/pymedio { };
|
||||
|
||||
pymeeus = callPackage ../development/python-modules/pymeeus { };
|
||||
|
||||
pymelcloud = callPackage ../development/python-modules/pymelcloud { };
|
||||
|
|
Loading…
Reference in a new issue