Add shell.nix to include Python 3.8

This commit is contained in:
coolneng 2020-07-17 17:20:37 +02:00
parent 98cc6ebdb9
commit 0150c54284
Signed by: coolneng
GPG Key ID: 9893DA236405AF57

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell { buildInputs = [ python38 ]; }