python312Packages.podman: 5.2.0 -> 5.3.0 (#359185)

This commit is contained in:
Fabian Affolter 2024-11-27 12:33:22 +01:00 committed by GitHub
commit e6c5279f68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,16 +15,16 @@
buildPythonPackage rec {
pname = "podman";
version = "5.2.0";
version = "5.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "containers";
repo = "podman-py";
rev = "refs/tags/v${version}";
hash = "sha256-2NsF00jaW2wl99sTxTQ5xJkqNOYh9RaecmBMcWP3TI8=";
hash = "sha256-YER+qTC5+eF3PWtDBPq2WNOm5RzqXy30+1JdPzwyfrk=";
};
build-system = [ setuptools ];