summary refs log tree commit diff
path: root/pkgs/tools/misc/bonfire
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-01-10 02:36:09 +0100
committerworldofpeace <worldofpeace@users.noreply.github.com>2019-01-10 17:29:35 -0500
commitada7cf0c66e600f7479a7206f1677c5d5236c476 (patch)
treec71f18365e2990c22d4a114abf0207fa41471f31 /pkgs/tools/misc/bonfire
parentfc24e4237dac83efe6c6b3f4ec3482332a33ccf9 (diff)
downloadnixpkgs-ada7cf0c66e600f7479a7206f1677c5d5236c476.tar
nixpkgs-ada7cf0c66e600f7479a7206f1677c5d5236c476.tar.gz
nixpkgs-ada7cf0c66e600f7479a7206f1677c5d5236c476.tar.bz2
nixpkgs-ada7cf0c66e600f7479a7206f1677c5d5236c476.tar.lz
nixpkgs-ada7cf0c66e600f7479a7206f1677c5d5236c476.tar.xz
nixpkgs-ada7cf0c66e600f7479a7206f1677c5d5236c476.tar.zst
nixpkgs-ada7cf0c66e600f7479a7206f1677c5d5236c476.zip
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
Diffstat (limited to 'pkgs/tools/misc/bonfire')
-rw-r--r--pkgs/tools/misc/bonfire/default.nix3
1 files changed, 2 insertions, 1 deletions
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}',"