summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-06 13:06:04 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:36:05 +0200
commit889cbd5c12158f4b200ae11051c42673bd6b0a39 (patch)
treee24a9896d120ac60ac46f32f9d69e5d606e12236
parentfe2e07451f387ba73f9ce9c7506d70cc963b61c3 (diff)
downloadnixpkgs-889cbd5c12158f4b200ae11051c42673bd6b0a39.tar
nixpkgs-889cbd5c12158f4b200ae11051c42673bd6b0a39.tar.gz
nixpkgs-889cbd5c12158f4b200ae11051c42673bd6b0a39.tar.bz2
nixpkgs-889cbd5c12158f4b200ae11051c42673bd6b0a39.tar.lz
nixpkgs-889cbd5c12158f4b200ae11051c42673bd6b0a39.tar.xz
nixpkgs-889cbd5c12158f4b200ae11051c42673bd6b0a39.tar.zst
nixpkgs-889cbd5c12158f4b200ae11051c42673bd6b0a39.zip
bonfire: fix build
Loosen version constraints to not have an upper bound.
The upper bounds would have to be updated again on the next keyring
update, so they don't make sense.
-rw-r--r--pkgs/tools/misc/bonfire/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/bonfire/default.nix b/pkgs/tools/misc/bonfire/default.nix
index 0d6e93118d8..9355f3e5407 100644
--- a/pkgs/tools/misc/bonfire/default.nix
+++ b/pkgs/tools/misc/bonfire/default.nix
@@ -19,8 +19,8 @@ buildPythonApplication rec {
   postPatch = ''
     # 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 "arrow>=0.5.4,<0.8" "arrow>=0.5.4" \
+      --replace "keyring>=9,<10"    "keyring>=9"
     # pip fails when encountering the git hash for the package version
     substituteInPlace setup.py \
       --replace "version=version," "version='${version}',"