python3Packages.numba: disable for python < 3.6

This commit is contained in:
Jonathan Ringer 2020-02-12 23:13:50 -08:00 committed by Frederik Rietdijk
parent a43ec07165
commit 984eb94496

View File

@ -1,4 +1,5 @@
{ stdenv { stdenv
, pythonOlder
, fetchPypi , fetchPypi
, python , python
, buildPythonPackage , buildPythonPackage
@ -15,6 +16,8 @@
buildPythonPackage rec { buildPythonPackage rec {
version = "0.48.0"; version = "0.48.0";
pname = "numba"; pname = "numba";
# uses f-strings
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;