python310Packages.quantities: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter
2023-02-20 11:21:23 +01:00
parent 38f6376243
commit dec690df7f
@@ -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;