This commit is contained in:
Tim Schubert 2020-05-16 17:14:18 +02:00
commit f757a448a2
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
4 changed files with 112 additions and 0 deletions

11
default.nix Normal file
View file

@ -0,0 +1,11 @@
with import <nixpkgs> {};
let
pythonEnv = python37.withPackages(ps: [
ps.matrix-nio
ps.inotify
]);
in mkShell {
builtInputs = [
pythonEnv
];
}