summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-12-06 13:20:59 +0100
committermakefu <github@syntax-fehler.de>2017-12-06 13:20:59 +0100
commit6bda21a211ed7f140179c2ec78e2d3fdc371c916 (patch)
tree6686bab3c1e6b7ad48708a0b1d08fc15c6adf4bb
parent04efe2e961114d1c15ec2bc78a471ddd973932b5 (diff)
default.nix: init
-rw-r--r--default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..c6c970d
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,15 @@
+with import <nixpkgs> {};
+
+with pkgs.python3Packages;
+buildPythonPackage {
+ name = "python-env";
+ buildInputs = [
+ pytz
+ requests
+ docopt
+ paho-mqtt
+ influxdb
+ ];
+
+ src = ./.;
+}