add shell.nix

master
vuko 2022-02-27 19:01:44 +01:00
parent cee4dae456
commit 8bff421cc4
1 changed files with 5 additions and 0 deletions

5
admin/shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [ (pkgs.python3Packages.callPackage ./default.nix {}) ];
}