From ada7cf0c66e600f7479a7206f1677c5d5236c476 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Thu, 10 Jan 2019 02:36:09 +0100 Subject: [PATCH] bonfire: fix build The build could be fixed by loosening the constraint for `click` (which is currently at 7.0 in master). The CLI interface remains functional with v7. See also https://hydra.nixos.org/build/86455177 --- pkgs/tools/misc/bonfire/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/bonfire/default.nix b/pkgs/tools/misc/bonfire/default.nix index 9355f3e5407..b8e5e3de650 100644 --- a/pkgs/tools/misc/bonfire/default.nix +++ b/pkgs/tools/misc/bonfire/default.nix @@ -20,7 +20,8 @@ buildPythonApplication rec { # https://github.com/blue-yonder/bonfire/pull/24 substituteInPlace requirements.txt \ --replace "arrow>=0.5.4,<0.8" "arrow>=0.5.4" \ - --replace "keyring>=9,<10" "keyring>=9" + --replace "keyring>=9,<10" "keyring>=9" \ + --replace "click>=3.3,<7" "click>=3.3" # pip fails when encountering the git hash for the package version substituteInPlace setup.py \ --replace "version=version," "version='${version}',"