From e57f0df5e3a4e69efa3897c3529b0050ed0c26eb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 9 Sep 2025 19:59:57 +0200 Subject: [PATCH] python313Packages.podman: 5.5.0 -> 5.6.0 Changelog: https://github.com/containers/podman-py/releases/tag/v5.6.0 --- pkgs/development/python-modules/podman/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/podman/default.nix b/pkgs/development/python-modules/podman/default.nix index c71211fafb7d..82fc7e7cb3be 100644 --- a/pkgs/development/python-modules/podman/default.nix +++ b/pkgs/development/python-modules/podman/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "podman"; - version = "5.5.0"; + version = "5.6.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "containers"; repo = "podman-py"; tag = "v${version}"; - hash = "sha256-c8uU5WZsZufi/QNJkXh2Z1bmoM/oOm6+rggm4J+pnIc="; + hash = "sha256-VlPhW0FL51EQQRlDrd0F3ByXu/xpydXLSCM5umzpIW0="; }; build-system = [ setuptools ]; @@ -61,6 +61,12 @@ buildPythonPackage rec { "VolumesIntegrationTest" ]; + disabledTestPaths = [ + # Access to the host's filesystem + "podman/tests/integration/test_container_create.py" + "podman/tests/unit/test_utils.py" + ]; + meta = with lib; { description = "Python bindings for Podman's RESTful API"; homepage = "https://github.com/containers/podman-py";