Skip to content

Commit

Permalink
bonfire: fix build
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Ma27 authored and Mic92 committed Mar 9, 2018
1 parent 77e99aa commit d308c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/misc/bonfire/default.nix
Expand Up @@ -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}',"
Expand Down

0 comments on commit d308c7f

Please sign in to comment.