commit 784adfe764080da4d65c8c49ffb66eb315538f36 Author: Anton Lydike Date: Fri Jun 12 11:59:19 2020 +0200 Initial commit diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..e098d41 --- /dev/null +++ b/default.nix @@ -0,0 +1,13 @@ +with import {}; + +stdenv.mkDerivation rec { + name = "graphing-env"; + + buildInputs = [ + (python3.withPackages (ps: with ps; [ + pylint + plotly + clint + ])) + ]; +} diff --git a/graphing-nix.sh b/graphing-nix.sh new file mode 100644 index 0000000..e69de29 diff --git a/graphing.py b/graphing.py new file mode 100644 index 0000000..e69de29 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..4100ba6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +plotly==4.8.1 +clint \ No newline at end of file