Merge pull request #270886 from fabaff/podman-bump

python311Packages.podman: 4.7.0 -> 4.8.0
This commit is contained in:
Fabian Affolter 2023-11-29 21:21:18 +01:00 committed by GitHub
commit 1aa75463f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,15 +7,15 @@
, pyxdg
, requests
, requests-mock
, rich
, setuptools
, tomli
, urllib3
, wheel
}:
buildPythonPackage rec {
pname = "podman";
version = "4.7.0";
version = "4.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -24,17 +24,17 @@ buildPythonPackage rec {
owner = "containers";
repo = "podman-py";
rev = "refs/tags/v${version}";
hash = "sha256-0p3o1pTqD5Y2JmyLcGS/OCb3HmRu5iqeFqoPlwAkNfY=";
hash = "sha256-lw8ZW1Uh6pbL5Z15NBBgKFm1143rEyFdecBHsSwBYVo=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
pyxdg
requests
rich
tomli
urllib3
];