lol

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

authored by

Fabian Affolter and committed by
GitHub
59435481 acd99c92

+6 -16
+6 -16
pkgs/development/python-modules/pytest-docker-tools/default.nix
··· 3 3 buildPythonPackage, 4 4 docker, 5 5 fetchFromGitHub, 6 - fetchpatch, 7 - poetry-core, 8 6 pytest, 9 7 pytestCheckHook, 10 8 pythonOlder, 9 + setuptools, 11 10 }: 12 11 13 12 buildPythonPackage rec { 14 13 pname = "pytest-docker-tools"; 15 - version = "3.1.3"; 14 + version = "3.1.9"; 16 15 pyproject = true; 17 16 18 - disabled = pythonOlder "3.8"; 17 + disabled = pythonOlder "3.9"; 19 18 20 19 src = fetchFromGitHub { 21 20 owner = "Jc2k"; 22 21 repo = "pytest-docker-tools"; 23 - tag = version; 24 - hash = "sha256-6F3aSUyDlBBYG1kwOQvey7rujDdK83uJ3Q1dr8Uo1pw="; 22 + tag = "v${version}"; 23 + hash = "sha256-WYfgO7Ch1hCj9cE43jgI+2JEwDOzNvuMtkVV3PdMiBs="; 25 24 }; 26 25 27 - patches = [ 28 - # Switch to poetry-core, https://github.com/Jc2k/pytest-docker-tools/pull/48 29 - (fetchpatch { 30 - name = "switch-poetry-core.patch"; 31 - url = "https://github.com/Jc2k/pytest-docker-tools/pull/48/commits/a655e4a32b075e06e89dd907b06bc4ad90703988.patch"; 32 - hash = "sha256-CwCBld7p+bqBfxV9IyxcCvfxXfnUSzCLF2m0ZduIqkU="; 33 - }) 34 - ]; 35 - 36 - build-system = [ poetry-core ]; 26 + build-system = [ setuptools ]; 37 27 38 28 buildInputs = [ pytest ]; 39 29