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:
Jonathan Ringer 2020-10-16 00:12:21 -07:00 committed by Jon
parent 0c32389662
commit 20191e3f6b

View file

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