From aa0f46baa7e39d2e400c77d83e30adb51261e268 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 14 Oct 2023 20:51:08 +0200 Subject: [PATCH] python310Packages.in-place: disable on unsupported Python releases --- pkgs/development/python-modules/in-place/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/in-place/default.nix b/pkgs/development/python-modules/in-place/default.nix index 68e82ba1abfd..324cd61537fe 100644 --- a/pkgs/development/python-modules/in-place/default.nix +++ b/pkgs/development/python-modules/in-place/default.nix @@ -2,6 +2,7 @@ , fetchFromGitHub , lib , pytestCheckHook +, pythonOlder , setuptools }: @@ -10,6 +11,8 @@ buildPythonPackage rec { version = "1.0.0"; format = "pyproject"; + disabled = pythonOlder "3.8"; + src = fetchFromGitHub { owner = "jwodder"; repo = "inplace";