python2Packages.hickle: disable

```
  Processing ./hickle-4.0.1-py2-none-any.whl
  ERROR: Package 'hickle' requires a different Python: 2.7.18 not in '>=3.5'
```
This commit is contained in:
Jonathan Ringer 2020-09-15 11:41:36 -07:00 committed by Jon
parent 389ab45924
commit f1325cdfe7

View file

@ -1,5 +1,6 @@
{ buildPythonPackage
, fetchPypi
, pythonOlder
, h5py
, numpy
, dill
@ -19,6 +20,7 @@
buildPythonPackage rec {
pname = "hickle";
version = "4.0.1";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;