summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2018-03-09 11:53:15 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2018-03-09 11:55:55 +0100
commitba4d57b529b26ea68ffe8fcf94c48c643a442c8c (patch)
treeb3357e730fac122db72423d2e86993b107dfa125 /pkgs/tools
parent6fcf691545896b278cc8e6961af5db9331656f8c (diff)
downloadnixlib-ba4d57b529b26ea68ffe8fcf94c48c643a442c8c.tar
nixlib-ba4d57b529b26ea68ffe8fcf94c48c643a442c8c.tar.gz
nixlib-ba4d57b529b26ea68ffe8fcf94c48c643a442c8c.tar.bz2
nixlib-ba4d57b529b26ea68ffe8fcf94c48c643a442c8c.tar.lz
nixlib-ba4d57b529b26ea68ffe8fcf94c48c643a442c8c.tar.xz
nixlib-ba4d57b529b26ea68ffe8fcf94c48c643a442c8c.tar.zst
nixlib-ba4d57b529b26ea68ffe8fcf94c48c643a442c8c.zip
bonfire: fix build
The requirement's constraint for `pythonPackages.keyring` didn't allow
keyring v11. However it has been bumped in 93a16a2ace93fd96866d98181a07a8c5a779acce
by @FRidh.

Current failure: https://nix-cache.s3.amazonaws.com/log/2nw5adfx86jwiax32mn11kqpc35xwhsh-bonfire-unstable-2017-01-19.drv
See ticket #36453
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/bonfire/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/bonfire/default.nix b/pkgs/tools/misc/bonfire/default.nix
index 16b2169769f1..0d6e93118d82 100644
--- a/pkgs/tools/misc/bonfire/default.nix
+++ b/pkgs/tools/misc/bonfire/default.nix
@@ -20,7 +20,7 @@ buildPythonApplication rec {
     # https://github.com/blue-yonder/bonfire/pull/24
     substituteInPlace requirements.txt \
       --replace "arrow>=0.5.4,<0.8" "arrow>=0.5.4,<0.13" \
-      --replace "keyring>=9,<10"    "keyring>=9,<11"
+      --replace "keyring>=9,<10"    "keyring>=9,<=11"
     # pip fails when encountering the git hash for the package version
     substituteInPlace setup.py \
       --replace "version=version," "version='${version}',"