0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 08:31:01 +03:00

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

View file

@ -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;