fixup: nix-shell

This commit is contained in:
Tim Schubert 2020-05-17 00:12:26 +02:00
parent 4f54f620ab
commit a11f073eb5
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA

View file

@ -1,11 +1,12 @@
with import <nixpkgs> {}; with import <nixpkgs> {};
let let
pythonEnv = python37.withPackages(ps: [ pythonEnv = python3.withPackages(ps: with ps; [
ps.matrix-nio inotify-simple
ps.inotify-simple matrix-nio
]); ]);
in mkShell { in mkShell {
builtInputs = [ name = "mailbox2matrix-env";
buildInputs = [
pythonEnv pythonEnv
]; ];
} }