summaryrefslogtreecommitdiffstats
path: root/default.nix
blob: bc094335bafc18caf917db394383e4055664aef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
with import <nixpkgs> {};

with pkgs.python3Packages;
buildPythonPackage {
  name = "python-env";
  buildInputs = [
    pytz
    requests
    docopt
    paho-mqtt
    influxdb
    httplib2
    google_api_python_client
  ];

  src = ./.;
}