python3Packages.zarr: disable <python3.5

```
  Processing ./zarr-2.4.0-py2-none-any.whl
  ERROR: Package 'zarr' requires a different Python: 2.7.18 not in '>=3.5'
```
This commit is contained in:
Jonathan Ringer 2020-08-29 11:20:56 -07:00 committed by Frederik Rietdijk
parent 1df01342cf
commit fb6d6a518c
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, isPy27
, fetchPypi , fetchPypi
, setuptools_scm , setuptools_scm
, asciitree , asciitree
@ -12,6 +13,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "zarr"; pname = "zarr";
version = "2.4.0"; version = "2.4.0";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;