From dec690df7fa58c88e3bd28d10b51c1aee4795c32 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 20 Feb 2023 11:21:23 +0100 Subject: [PATCH] python310Packages.quantities: disable on unsupported Python releases --- pkgs/development/python-modules/quantities/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/quantities/default.nix b/pkgs/development/python-modules/quantities/default.nix index 2b828c2892d9..b40df5420d70 100644 --- a/pkgs/development/python-modules/quantities/default.nix +++ b/pkgs/development/python-modules/quantities/default.nix @@ -3,11 +3,15 @@ , fetchPypi , numpy , pytestCheckHook +, pythonOlder }: buildPythonPackage rec { pname = "quantities"; version = "0.14.1"; + format = "setuptools"; + + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version;