From edd58ef4875a1dcc33ecc9879c9c87cb1d9a6a04 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 10 Sep 2023 09:54:53 +0200 Subject: [PATCH] python311Packages.truststore: disable on unsupported Python releases --- pkgs/development/python-modules/truststore/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/truststore/default.nix b/pkgs/development/python-modules/truststore/default.nix index 536371c63ba9..51b335b2c709 100644 --- a/pkgs/development/python-modules/truststore/default.nix +++ b/pkgs/development/python-modules/truststore/default.nix @@ -1,10 +1,11 @@ { lib +, aiohttp , buildPythonPackage , fetchFromGitHub , flit-core -, aiohttp , httpx , pyopenssl +, pythonOlder , requests , trustme }: @@ -14,6 +15,8 @@ buildPythonPackage rec { version = "0.8.0"; format = "pyproject"; + disabled = pythonOlder "3.10"; + src = fetchFromGitHub { owner = "sethmlarson"; repo = pname;