python312Packages.podman: 5.0.0 -> 5.2.0

Diff: containers/podman-py@refs/tags/v5.0.0...v5.2.0

Changelog: https://github.com/containers/podman-py/releases/tag/v5.2.0
This commit is contained in:
Fabian Affolter 2024-08-07 16:47:28 +02:00
parent 60910727a5
commit 20fdfc2fba

View File

@ -5,7 +5,6 @@
fixtures,
pytestCheckHook,
pythonOlder,
pyxdg,
requests,
requests-mock,
rich,
@ -16,7 +15,7 @@
buildPythonPackage rec {
pname = "podman";
version = "5.0.0";
version = "5.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -25,18 +24,19 @@ buildPythonPackage rec {
owner = "containers";
repo = "podman-py";
rev = "refs/tags/v${version}";
hash = "sha256-3tbhTg060/K4ejT/xjItSu9zf05LR/d0vkg4XDsspEE=";
hash = "sha256-2NsF00jaW2wl99sTxTQ5xJkqNOYh9RaecmBMcWP3TI8=";
};
build-system = [ setuptools ];
propagatedBuildInputs = [
pyxdg
dependencies = [
requests
rich
tomli
urllib3
];
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
passthru.optional-dependencies = {
progress_bar = [ rich ];
};
nativeCheckInputs = [
fixtures
@ -54,6 +54,7 @@ buildPythonPackage rec {
# Integration tests require a running container setup
"AdapterIntegrationTest"
"ContainersIntegrationTest"
"ContainersExecIntegrationTests"
"ImagesIntegrationTest"
"ManifestsIntegrationTest"
"NetworksIntegrationTest"
@ -69,6 +70,5 @@ buildPythonPackage rec {
changelog = "https://github.com/containers/podman-py/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
mainProgram = "podman";
};
}