Merge pull request #256751 from fabaff/podman

python311Packages.podman: ini at 4.6.0
This commit is contained in:
Fabian Affolter 2023-09-23 12:26:14 +02:00 committed by GitHub
commit 5a4efb31f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,76 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fixtures
, pytestCheckHook
, pythonOlder
, pyxdg
, requests
, requests-mock
, setuptools
, tomli
, urllib3
, wheel
}:
buildPythonPackage rec {
pname = "podman";
version = "4.6.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "containers";
repo = "podman-py";
rev = "refs/tags/v${version}";
hash = "sha256-76mLgkQgYbm04bj1VX7SC/kW8JEbYjbK3x6Xb612wnk=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
pyxdg
requests
tomli
urllib3
];
nativeCheckInputs = [
fixtures
pytestCheckHook
requests-mock
];
preCheck = ''
export HOME=$(mktemp -d)
'';
pythonImportsCheck = [
"podman"
];
disabledTests = [
# Integration tests require a running container setup
"AdapterIntegrationTest"
"ContainersIntegrationTest"
"ImagesIntegrationTest"
"ManifestsIntegrationTest"
"NetworksIntegrationTest"
"PodsIntegrationTest"
"SecretsIntegrationTest"
"SystemIntegrationTest"
"VolumesIntegrationTest"
];
meta = with lib; {
description = "Python bindings for Podman's RESTful API";
homepage = "https://github.com/containers/podman-py";
changelog = "https://github.com/containers/podman-py/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -8539,6 +8539,8 @@ self: super: with self; {
podcats = callPackage ../development/python-modules/podcats { };
podman = callPackage ../development/python-modules/podman { };
poetry-core = callPackage ../development/python-modules/poetry-core { };
poetry-dynamic-versioning = callPackage ../development/python-modules/poetry-dynamic-versioning { };