python313Packages.pytest-docker-tools: 3.1.3 -> 3.1.9 (#392386)

This commit is contained in:
Fabian Affolter 2025-04-25 21:23:23 +02:00 committed by GitHub
commit 59435481e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,37 +3,27 @@
buildPythonPackage, buildPythonPackage,
docker, docker,
fetchFromGitHub, fetchFromGitHub,
fetchpatch,
poetry-core,
pytest, pytest,
pytestCheckHook, pytestCheckHook,
pythonOlder, pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-docker-tools"; pname = "pytest-docker-tools";
version = "3.1.3"; version = "3.1.9";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.9";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Jc2k"; owner = "Jc2k";
repo = "pytest-docker-tools"; repo = "pytest-docker-tools";
tag = version; tag = "v${version}";
hash = "sha256-6F3aSUyDlBBYG1kwOQvey7rujDdK83uJ3Q1dr8Uo1pw="; hash = "sha256-WYfgO7Ch1hCj9cE43jgI+2JEwDOzNvuMtkVV3PdMiBs=";
}; };
patches = [ build-system = [ setuptools ];
# Switch to poetry-core, https://github.com/Jc2k/pytest-docker-tools/pull/48
(fetchpatch {
name = "switch-poetry-core.patch";
url = "https://github.com/Jc2k/pytest-docker-tools/pull/48/commits/a655e4a32b075e06e89dd907b06bc4ad90703988.patch";
hash = "sha256-CwCBld7p+bqBfxV9IyxcCvfxXfnUSzCLF2m0ZduIqkU=";
})
];
build-system = [ poetry-core ];
buildInputs = [ pytest ]; buildInputs = [ pytest ];