From 5aff5b868af684b13960119119ea38ec9ccc915a Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Sun, 30 Jun 2019 22:33:07 +0100 Subject: Replacing python virtualenv with nix shell file --- default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 default.nix diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..0237c03 --- /dev/null +++ b/default.nix @@ -0,0 +1,13 @@ +with import {}; + +stdenv.mkDerivation { + name = "website"; + + buildInputs = with pkgs; [ + python3 + ] ++ (with pkgs.python3Packages; [ + pelican + markdown + webassets + ]); +} -- cgit v1.2.3