python2Packages.numcodes: disable for python2
setup.py no longer compatible with python2 ``` File "setup.py", line 48 print('[numcodecs]', *msg, **kwargs) ^ SyntaxError: invalid syntax ```
This commit is contained in:
parent
0c32389662
commit
20191e3f6b
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, setuptools_scm
|
||||
, cython
|
||||
, numpy
|
||||
|
@ -13,6 +14,7 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "numcodecs";
|
||||
version = "0.7.2";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
Loading…
Reference in New Issue