python312Packages.amcrest: disable on Python 3.12

Still uses distutils, https://github.com/tchellomello/python-amcrest/issues/234
This commit is contained in:
Fabian Affolter
2024-05-22 12:03:45 +02:00
parent 85b2d39cfe
commit fb10919e25
@@ -6,6 +6,7 @@
httpx,
mock,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
requests,
responses,
@@ -19,7 +20,8 @@ buildPythonPackage rec {
version = "1.9.8";
pyproject = true;
disabled = pythonOlder "3.7";
# Still uses distutils, https://github.com/tchellomello/python-amcrest/issues/234
disabled = pythonOlder "3.7" || pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "tchellomello";