(try) to improve tooling

This commit is contained in:
Istvan Ruzman
2020-09-02 21:27:39 +02:00
parent bbcd58e452
commit 9091f2eb2c
6 changed files with 51 additions and 41 deletions

View File

@@ -1,4 +1,5 @@
let pkgs = import <nixpkgs> { };
in pkgs.mkShell {
buildInputs = with pkgs; [
git
@@ -11,8 +12,10 @@ in pkgs.mkShell {
python38Packages.virtualenv
python39
python39Packages.virtualenv
python3Packages.bandit
python3Packages.black
python3Packages.coveralls
python3Packages.pep8-naming
python3Packages.poetry
python3Packages.pytest
python3Packages.pytest-black
@@ -22,6 +25,7 @@ in pkgs.mkShell {
python3Packages.pytest-mypy
python3Packages.pytest-pylint
python3Packages.sphinx
python3Packages.pytoml # needed for isort
python3Packages.tox
];