From 36f7a407ad792f91902ced30bcc966399b20d7ee Mon Sep 17 00:00:00 2001 From: Tom Hunger Date: Sun, 20 Sep 2020 22:29:52 +0100 Subject: [PATCH] zict: disable build for Python older than 3.6 No longer supported as of https://github.com/dask/zict/commit/4d5e14dadba940235a59f7e5076653cf7d51d27d --- pkgs/development/python-modules/zict/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/zict/default.nix b/pkgs/development/python-modules/zict/default.nix index 0aa379322ee..c5629a6fb73 100644 --- a/pkgs/development/python-modules/zict/default.nix +++ b/pkgs/development/python-modules/zict/default.nix @@ -1,5 +1,5 @@ { stdenv, buildPythonPackage, fetchPypi -, pytest, heapdict }: +, pytest, heapdict, pythonOlder }: buildPythonPackage rec { pname = "zict"; @@ -10,6 +10,8 @@ buildPythonPackage rec { sha256 = "8e2969797627c8a663575c2fc6fcb53a05e37cdb83ee65f341fc6e0c3d0ced16"; }; + disabled = pythonOlder "3.6"; + buildInputs = [ pytest ]; propagatedBuildInputs = [ heapdict ];