Commit fb10919e authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.amcrest: disable on Python 3.12

parent 85b2d39c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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";