From 08c600ee0b971543d8c4b3602fc69af8eaeb0d79 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 1 Apr 2025 09:42:31 +0200 Subject: [PATCH] python313Packages.oras: 0.2.27 -> 0.2.28 Changelog: https://github.com/oras-project/oras-py/blob/0.2.28/CHANGELOG.md --- pkgs/development/python-modules/oras/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/oras/default.nix b/pkgs/development/python-modules/oras/default.nix index b2fa82d231cd..d6f8524c6fae 100644 --- a/pkgs/development/python-modules/oras/default.nix +++ b/pkgs/development/python-modules/oras/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "oras"; - version = "0.2.27"; + version = "0.2.28"; pyproject = true; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "oras-project"; repo = "oras-py"; tag = version; - hash = "sha256-ysbjLiGRRYGqYUS+jlY0DDzzTXUZYu+/dajHv2O0V9o="; + hash = "sha256-JUKInJDBR9Qnqg04FDG2SlktSRRWCf30+96tDuhYc1Y="; }; build-system = [ setuptools ]; @@ -37,12 +37,13 @@ buildPythonPackage rec { disabledTests = [ # Test requires network access "test_get_many_tags" + "test_ssl" ]; meta = with lib; { description = "ORAS Python SDK"; homepage = "https://github.com/oras-project/oras-py"; - changelog = "https://github.com/oras-project/oras-py/blob/${version}/CHANGELOG.md"; + changelog = "https://github.com/oras-project/oras-py/blob/${src.tag}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; };