safe progress

This commit is contained in:
Istvan Ruzman
2020-08-06 18:04:24 +02:00
parent 3254bc66e0
commit fd16436c3c
53 changed files with 2167 additions and 4589 deletions

View File

@@ -1,5 +1,20 @@
let
pkgs = import <nixpkgs> {};
python = pkgs.python36;
in
import ./default.nix { inherit pkgs python; }
pkgs.mkShell {
buildInputs = with pkgs; [
git
nixfmt
pkgs.python3
pkgs.python3Packages.black
pkgs.python3Packages.pytest
pkgs.python3Packages.pytest-black
pkgs.python3Packages.pytest-flake8
pkgs.python3Packages.pytest-mypy
pkgs.python3Packages.pytest-pylint
];
shellHook = ''
export PYTHONPATH=${./src}:$PYTHONPATH
'';
}