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:
parent
1df01342cf
commit
fb6d6a518c
|
@ -1,5 +1,6 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, isPy27
|
||||
, fetchPypi
|
||||
, setuptools_scm
|
||||
, asciitree
|
||||
|
@ -12,6 +13,7 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "zarr";
|
||||
version = "2.4.0";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
Loading…
Reference in New Issue