summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2014-09-10 19:22:46 +0200
committerJaka Hudoklin <jakahudoklin@gmail.com>2014-09-10 19:22:46 +0200
commitbac231481ac4ceed6e4a4fe5f6f315b508ec3887 (patch)
tree4667de6ee0d0b920d9f6d397e140b78ba19aa701 /pkgs
parent453b3779926ec83f3d332dcf3cd3fbcc334f7852 (diff)
downloadnixlib-bac231481ac4ceed6e4a4fe5f6f315b508ec3887.tar
nixlib-bac231481ac4ceed6e4a4fe5f6f315b508ec3887.tar.gz
nixlib-bac231481ac4ceed6e4a4fe5f6f315b508ec3887.tar.bz2
nixlib-bac231481ac4ceed6e4a4fe5f6f315b508ec3887.tar.lz
nixlib-bac231481ac4ceed6e4a4fe5f6f315b508ec3887.tar.xz
nixlib-bac231481ac4ceed6e4a4fe5f6f315b508ec3887.tar.zst
nixlib-bac231481ac4ceed6e4a4fe5f6f315b508ec3887.zip
pythonPackages: add graphite_influxdb, backend plugin for graphite-web and graphite-api
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 7e2e338f8e99..8c77ef8112ba 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -4156,6 +4156,25 @@ rec {
     doCheck = false;
   }) else null;
 
+  influxdb = buildPythonPackage rec {
+    name = "influxdb-0.1.12";
+
+    src = fetchurl {
+      url = "http://pypi.python.org/packages/source/i/influxdb/${name}.tar.gz";
+      md5 = "6c975058ccc4df41dad8d8234c52d754";
+    };
+
+    # ImportError: No module named tests
+    doCheck = false;
+    propagatedBuildInputs = [ requests ];
+
+    meta = {
+      description = "Python client for InfluxDB";
+      homepage = https://github.com/influxdb/influxdb-python;
+      license = licenses.mit;
+    };
+  };
+
   iptools = buildPythonPackage rec {
     version = "0.6.1";
     name = "iptools-${version}";
@@ -10381,6 +10400,24 @@ rec {
     };
   };
 
+  graphite_influxdb = buildPythonPackage rec {
+    name = "graphite-influxdb-0.3";
+
+    src = fetchurl {
+      url = "https://pypi.python.org/packages/source/g/graphite-influxdb/${name}.tar.gz";
+      md5 = "5ce64ff6bb0b41c99e57486d6ec86eb7";
+    };
+
+    propagatedBuildInputs = [ influxdb graphite_api ];
+
+    meta = {
+      description = "An influxdb backend for Graphite-web and graphite-api";
+      homepage = https://github.com/vimeo/graphite-influxdb;
+      license = licenses.asl20;
+    };
+  };
+
+
   pyspotify = buildPythonPackage rec {
     name = "pyspotify-${version}";