From ae2d3e6823f98b55dfa064fff5a81ed26be9343c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 6 Jun 2024 23:20:53 +0200 Subject: [PATCH] python311Packages.rye: 2.23.0 -> 2.24.0 Changelog: https://github.com/ray-project/ray/releases/tag/ray-2.24.0 --- pkgs/development/python-modules/ray/binary-hashes.nix | 4 ++-- pkgs/development/python-modules/ray/default.nix | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/ray/binary-hashes.nix b/pkgs/development/python-modules/ray/binary-hashes.nix index 10f3e946bdf8..45e06d9caff8 100644 --- a/pkgs/development/python-modules/ray/binary-hashes.nix +++ b/pkgs/development/python-modules/ray/binary-hashes.nix @@ -1,8 +1,8 @@ { cp310 = { - hash = "sha256-VWEPjq5lzlaGvedaV4LOY+KgESzNImK4rNcHJk2m2+o="; + hash = "sha256-e0B3uGc5Yp4BC8bQAaiQCaouH+qUxAjA7jB2f8DA6m0="; }; cp311 = { - hash = "sha256-FcEJ/ZlpMmMjyL2wcBzZryHIX0ZQAvdJUGIvmlgOxOU="; + hash = "sha256-cZX0rjCgfyGqAM99lFZI7WlotjyksCpb3H/DCFP0lBA="; }; } diff --git a/pkgs/development/python-modules/ray/default.nix b/pkgs/development/python-modules/ray/default.nix index 412dffc4925f..e169a6a66f10 100644 --- a/pkgs/development/python-modules/ray/default.nix +++ b/pkgs/development/python-modules/ray/default.nix @@ -53,7 +53,7 @@ let pname = "ray"; - version = "2.23.0"; + version = "2.24.0"; in buildPythonPackage rec { inherit pname version; @@ -122,7 +122,7 @@ buildPythonPackage rec { "virtualenv" ]; - propagatedBuildInputs = [ + dependencies = [ attrs aiohttp aiohttp-cors @@ -158,12 +158,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ray" ]; - meta = with lib; { + meta = { description = "A unified framework for scaling AI and Python applications"; homepage = "https://github.com/ray-project/ray"; changelog = "https://github.com/ray-project/ray/releases/tag/ray-${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ billhuang ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ billhuang ]; platforms = [ "x86_64-linux" ]; }; }