summary refs log tree commit diff
path: root/pkgs/tools/misc/bonfire
diff options
context:
space:
mode:
authorKranium Gikos Mendoza <kranium@gikos.net>2017-09-27 01:38:06 +1000
committerKranium Gikos Mendoza <kranium@gikos.net>2017-10-04 21:18:30 +1100
commit11b4512033b011af20fef558f001b9566ebf3aef (patch)
tree0867d391dd67acda7d03fb9a3a782b029b5e2d1e /pkgs/tools/misc/bonfire
parent0bc5d15aee116b0aa548b0f48890941bc9f7c655 (diff)
downloadnixpkgs-11b4512033b011af20fef558f001b9566ebf3aef.tar
nixpkgs-11b4512033b011af20fef558f001b9566ebf3aef.tar.gz
nixpkgs-11b4512033b011af20fef558f001b9566ebf3aef.tar.bz2
nixpkgs-11b4512033b011af20fef558f001b9566ebf3aef.tar.lz
nixpkgs-11b4512033b011af20fef558f001b9566ebf3aef.tar.xz
nixpkgs-11b4512033b011af20fef558f001b9566ebf3aef.tar.zst
nixpkgs-11b4512033b011af20fef558f001b9566ebf3aef.zip
bonfire: init at 0.0.7
Diffstat (limited to 'pkgs/tools/misc/bonfire')
-rw-r--r--pkgs/tools/misc/bonfire/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/tools/misc/bonfire/default.nix b/pkgs/tools/misc/bonfire/default.nix
new file mode 100644
index 00000000000..7937a212951
--- /dev/null
+++ b/pkgs/tools/misc/bonfire/default.nix
@@ -0,0 +1,44 @@
+{ stdenv, python3Packages, fetchFromGitHub }:
+
+with python3Packages;
+
+buildPythonApplication rec {
+  version = "2017-01-19";
+  pname = "bonfire";
+  name = "${pname}-unstable-${version}";
+
+  # use latest git version with --endpoint flag
+  # https://github.com/blue-yonder/bonfire/pull/18
+  src = fetchFromGitHub {
+    owner = "blue-yonder";
+    repo = "${pname}";
+    rev = "d0af9ca10394f366cfa3c60f0741f1f0918011c2";
+    sha256 = "193zcvzbhxwwkwbgmnlihhhazwkajycxf4r71jz1m12w301sjhq5";
+  };
+
+  postPatch = ''
+    # https://github.com/blue-yonder/bonfire/pull/24
+    substituteInPlace requirements.txt \
+      --replace "arrow>=0.5.4,<0.8" "arrow>=0.5.4,<0.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}',"
+    # remove extraneous files  
+    substituteInPlace setup.cfg \
+      --replace "data_files = *.rst, *.txt" ""
+  '';
+
+  buildInputs = [ httpretty pytest pytestcov ];
+
+  propagatedBuildInputs = [ arrow click keyring parsedatetime requests six termcolor ];
+
+  meta = with stdenv.lib; {
+    homepage = https://pypi.python.org/pypi/bonfire;
+    description = "CLI Graylog Client with Follow Mode";
+    license = licenses.bsd3;
+    maintainers = [ maintainers.womfoo ];
+    platforms = platforms.linux;
+  };
+
+}