From a11f073eb560470337ffbb2f551261950a9bf619 Mon Sep 17 00:00:00 2001 From: dadada Date: Sun, 17 May 2020 00:12:26 +0200 Subject: [PATCH] fixup: nix-shell --- default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/default.nix b/default.nix index 1501a1d..153fc7e 100644 --- a/default.nix +++ b/default.nix @@ -1,11 +1,12 @@ with import {}; let - pythonEnv = python37.withPackages(ps: [ - ps.matrix-nio - ps.inotify-simple + pythonEnv = python3.withPackages(ps: with ps; [ + inotify-simple + matrix-nio ]); in mkShell { - builtInputs = [ + name = "mailbox2matrix-env"; + buildInputs = [ pythonEnv ]; }