python312Packages.keras-preprocessing: remove

keras-preprocessing has been removed because it's abandoned since 2024
This commit is contained in:
natsukium
2025-01-19 20:04:22 +09:00
parent 8cf2205b43
commit 59fe6abb33
5 changed files with 1 additions and 56 deletions
@@ -1,49 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
numpy,
six,
scipy,
pillow,
pytest,
keras,
}:
buildPythonPackage rec {
pname = "keras-preprocessing";
version = "1.1.2";
src = fetchPypi {
pname = "Keras_Preprocessing";
inherit version;
sha256 = "add82567c50c8bc648c14195bf544a5ce7c1f76761536956c3d2978970179ef3";
};
propagatedBuildInputs = [
# required
numpy
six
# optional
scipy
pillow
];
nativeCheckInputs = [
pytest
keras
];
checkPhase = ''
py.test tests/
'';
# Cyclic dependency: keras-preprocessing's tests require Keras, which requires keras-preprocessing
doCheck = false;
meta = with lib; {
description = "Easy data preprocessing and data augmentation for deep learning models";
homepage = "https://github.com/keras-team/keras-preprocessing";
license = licenses.mit;
};
}
@@ -29,7 +29,6 @@
cudaPackages,
zlib,
python,
keras-preprocessing,
addDriverRunpath,
astunparse,
flatbuffers,
@@ -89,7 +88,6 @@ buildPythonPackage rec {
wrapt
tensorflow-estimator-bin
tensorboard
keras-preprocessing
h5py
] ++ lib.optional (!isPy3k) mock;
@@ -22,7 +22,6 @@
packaging,
setuptools,
wheel,
keras-preprocessing,
google-pasta,
opt-einsum,
astunparse,
@@ -197,7 +196,6 @@ let
google-pasta
grpcio
h5py
keras-preprocessing
numpy
opt-einsum
packaging
@@ -648,7 +646,6 @@ buildPythonPackage {
google-pasta
grpcio
h5py
keras-preprocessing
numpy
opt-einsum
packaging
+1
View File
@@ -325,6 +325,7 @@ mapAliases ({
keepkey_agent = keepkey-agent; # added 2024-01-06
Keras = keras; # added 2021-11-25
keras-applications = throw "keras-applications has been removed because it's abandoned since 2022"; # added 2025-01-12
keras-preprocessing = throw "keras-preprocessing has been removed because it's abandoned since 2024"; # added 2025-01-12
keyring_24 = throw "keyring_24 has been removed, use keyring instead"; # added 2025-01-01
ldap = python-ldap; # added 2022-09-16
lammps-cython = throw "lammps-cython no longer builds and is unmaintained"; # added 2021-07-04
-2
View File
@@ -6945,8 +6945,6 @@ self: super: with self; {
keras = callPackage ../development/python-modules/keras { };
keras-preprocessing = callPackage ../development/python-modules/keras-preprocessing { };
kerberos = callPackage ../development/python-modules/kerberos { };
keyboard = callPackage ../development/python-modules/keyboard { };