nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildPythonPackage, fetchPypi, isPy3k
2, influxdb, graphite_api, python-memcached
3}:
4
5buildPythonPackage rec {
6 pname = "influxgraph";
7 version = "1.5.0";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "0l33sfwdh4bfprmzp2kx0d9098g6yxbnhyyx9qr3kzczpm0jg9vy";
12 };
13
14 propagatedBuildInputs = [ influxdb graphite_api python-memcached ];
15
16 passthru.moduleName = "influxgraph.InfluxDBFinder";
17
18 meta = with lib; {
19 description = "InfluxDB storage plugin for Graphite-API";
20 homepage = "https://github.com/InfluxGraph/influxgraph";
21 license = licenses.asl20;
22 maintainers = with maintainers; [ basvandijk ];
23 };
24}