python3Packages.numba: disable for python < 3.6
This commit is contained in:
parent
a43ec07165
commit
984eb94496
1 changed files with 3 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
{ stdenv
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, python
|
||||
, buildPythonPackage
|
||||
|
@ -15,6 +16,8 @@
|
|||
buildPythonPackage rec {
|
||||
version = "0.48.0";
|
||||
pname = "numba";
|
||||
# uses f-strings
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
Loading…
Reference in a new issue