mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
python3Packages.pymedio: drop
This commit is contained in:
@@ -1,44 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pytestCheckHook,
|
||||
cryptography,
|
||||
nibabel,
|
||||
numpy,
|
||||
pydicom,
|
||||
simpleitk,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pymedio";
|
||||
version = "0.2.14";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jcreinhold";
|
||||
repo = "pymedio";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-x3CHoWASDrUoCXfj73NF+0Y/3Mb31dK2Lh+o4OD9ryk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
cryptography
|
||||
nibabel
|
||||
pydicom
|
||||
simpleitk
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pymedio" ];
|
||||
|
||||
meta = {
|
||||
description = "Read medical image files into Numpy arrays";
|
||||
homepage = "https://github.com/jcreinhold/pymedio";
|
||||
changelog = "https://github.com/jcreinhold/pymedio/blob/v${version}/HISTORY.rst";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
||||
@@ -452,7 +452,6 @@
|
||||
"python3Packages.pylance",
|
||||
"python3Packages.pymanopt",
|
||||
"python3Packages.pymc",
|
||||
"python3Packages.pymedio",
|
||||
"python3Packages.pymoo",
|
||||
"python3Packages.pyotb",
|
||||
"python3Packages.pypasser",
|
||||
|
||||
@@ -497,6 +497,7 @@ mapAliases {
|
||||
pyliblo = throw "pyliblo is unmaintained upstream and was removed from nixpkgs. Please use pyliblo3 instead"; # added 2025-06-23
|
||||
pylit = throw "'pylit' has been removed as it was broken and unmaintained upstream"; # Added 2025-11-29
|
||||
pymc3 = throw "'pymc3' has been renamed to/replaced by 'pymc'"; # Converted to throw 2025-10-29
|
||||
pymedio = throw "pymedio was removed, as it is archived since 2025 in upstream. The modules 'dicom-numpy' and 'simpleitk' can be used as alternatives."; # added 2026-09-11
|
||||
pymelcloud = throw "'pymelcloud' has been renamed to/replaced by 'python-melcloud'"; # Converted to throw 2025-10-29
|
||||
pymsteams = throw "'pymsteams' was removed because API used was discontinued"; # Added 2026-06-04
|
||||
pymvglive = throw "'pymvglive' has been removed because it was unmaintained upstream and non-functional due to API changes"; # added 2026-06-10
|
||||
|
||||
@@ -15041,8 +15041,6 @@ self: super: with self; {
|
||||
|
||||
pymediaroom = callPackage ../development/python-modules/pymediaroom { };
|
||||
|
||||
pymedio = callPackage ../development/python-modules/pymedio { };
|
||||
|
||||
pymee = callPackage ../development/python-modules/pymee { };
|
||||
|
||||
pymeeus = callPackage ../development/python-modules/pymeeus { };
|
||||
|
||||
Reference in New Issue
Block a user