python313Packages.podman: 5.5.0 -> 5.6.0

Changelog: https://github.com/containers/podman-py/releases/tag/v5.6.0

Changed files
+8 -2
pkgs
development
python-modules
podman
+8 -2
pkgs/development/python-modules/podman/default.nix
···
buildPythonPackage rec {
pname = "podman";
-
version = "5.5.0";
+
version = "5.6.0";
pyproject = true;
disabled = pythonOlder "3.11";
···
owner = "containers";
repo = "podman-py";
tag = "v${version}";
-
hash = "sha256-c8uU5WZsZufi/QNJkXh2Z1bmoM/oOm6+rggm4J+pnIc=";
+
hash = "sha256-VlPhW0FL51EQQRlDrd0F3ByXu/xpydXLSCM5umzpIW0=";
};
build-system = [ setuptools ];
···
"SecretsIntegrationTest"
"SystemIntegrationTest"
"VolumesIntegrationTest"
+
];
+
+
disabledTestPaths = [
+
# Access to the host's filesystem
+
"podman/tests/integration/test_container_create.py"
+
"podman/tests/unit/test_utils.py"
];
meta = with lib; {