Browse Source

Add nix shell with development dependencies

networkException 8 months ago
parent
commit
78466cae37
1 changed files with 10 additions and 0 deletions
  1. 10 0
      shell.nix

+ 10 - 0
shell.nix

@@ -0,0 +1,10 @@
+{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
+  nativeBuildInputs = with pkgs; [
+    quilt
+
+    (python3.withPackages (ps: with ps; [
+      httplib2
+      six
+    ]))
+  ];
+}