summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2021-04-24 15:45:15 +0200
committerJulian T <julian@jtle.dk>2021-04-24 15:46:05 +0200
commit1e1f021f22f82a2e261a8fcf802d5bd744e2489b (patch)
tree7ab7d65eeef3e37949250225eb66b52d7dc4e076 /shell.nix
parent02f2e3f2b0914645dc142d2b86fcb16a40685c3f (diff)
Move to new apply script
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..bc9621b
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? import <nixpkgs> {}, pythonPackages ? pkgs.python38Packages }:
+
+pkgs.mkShell {
+ buildInputs = with pythonPackages; [
+ pyyaml
+ ];
+}