Skip to content

Commit

Permalink
python312Packages.amcrest: disable on Python 3.12
Browse files Browse the repository at this point in the history
Still uses distutils, tchellomello/python-amcrest#234
  • Loading branch information
fabaff committed May 22, 2024
1 parent 85b2d39 commit fb10919
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/amcrest/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
httpx,
mock,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
requests,
responses,
Expand All @@ -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";
Expand Down

0 comments on commit fb10919

Please sign in to comment.