77 lines
1.4 KiB
Nix
77 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fixtures
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyxdg
|
|
, requests
|
|
, requests-mock
|
|
, rich
|
|
, setuptools
|
|
, tomli
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "podman";
|
|
version = "5.0.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = "podman-py";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3tbhTg060/K4ejT/xjItSu9zf05LR/d0vkg4XDsspEE=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pyxdg
|
|
requests
|
|
rich
|
|
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 ];
|
|
mainProgram = "podman";
|
|
};
|
|
}
|