python312Packages.tf-keras: 2.17.0 -> 2.18.0

This commit is contained in:
Gaetan Lepage
2024-12-01 11:09:49 +01:00
parent 7289b48c67
commit cb2bc4fc71
@@ -9,6 +9,8 @@
# dependencies
numpy,
tensorflow,
pythonAtLeast,
distutils,
# tests
pytestCheckHook,
@@ -16,13 +18,13 @@
buildPythonPackage rec {
pname = "tf-keras";
version = "2.17.0";
version = "2.18.0";
pyproject = true;
src = fetchPypi {
pname = "tf_keras";
inherit version;
hash = "sha256-/al8GNow2g9ypafoDz7uNDsJ9MIG2tbFfJRPss0YVg4=";
hash = "sha256-6/dEUZsyKv6tMwhqKrqHIkVHMpSv/UCXNpTz63x6130=";
};
build-system = [
@@ -32,7 +34,7 @@ buildPythonPackage rec {
dependencies = [
numpy
tensorflow
];
] ++ lib.optionals (pythonAtLeast "3.12") [ distutils ];
pythonImportsCheck = [ "tf_keras" ];