From 4c79fb5d1c6cb1b2b0d8dcd94ebd55acdf0269db Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 5 Apr 2026 23:00:39 +0000 Subject: [PATCH] python3Packages.tf-keras: 2.20.1 -> 2.21.0 --- pkgs/development/python-modules/tf-keras/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/tf-keras/default.nix b/pkgs/development/python-modules/tf-keras/default.nix index e4dbdc919934..5096b4a3c136 100644 --- a/pkgs/development/python-modules/tf-keras/default.nix +++ b/pkgs/development/python-modules/tf-keras/default.nix @@ -16,15 +16,15 @@ pytestCheckHook, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "tf-keras"; - version = "2.20.1"; + inherit (tensorflow) version; pyproject = true; src = fetchPypi { pname = "tf_keras"; - inherit version; - hash = "sha256-iEvlk4+wsrU7FYPBritmDvhyFTd8KbW2p3/SIbRyrq8="; + inherit (finalAttrs) version; + hash = "sha256-+a8PJUbNVTLeD656SB80ocoiU3N9TNEAD2txPccz93A="; }; build-system = [ @@ -47,4 +47,4 @@ buildPythonPackage rec { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ GaetanLepage ]; }; -} +})