about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-20 11:21:23 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-02-20 11:21:23 +0100
commitdec690df7fa58c88e3bd28d10b51c1aee4795c32 (patch)
tree75779cc730526a3aebb75284d07b6c6b39943a91 /pkgs
parent38f637624366ac5ed856eb36eb9c524aa615f03a (diff)
python310Packages.quantities: disable on unsupported Python releases
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/quantities/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/quantities/default.nix b/pkgs/development/python-modules/quantities/default.nix
index 2b828c2892d90..b40df5420d706 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;