Skip to content

Commit

Permalink
added nix shell file
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVonB committed Sep 2, 2022
1 parent 4fb451f commit 433fad2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "python-shell";
buildInputs = with pkgs; [
python38
python38Packages.tox
python38Packages.setuptools
python38Packages.virtualenv
];
}
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
envlist = py38

[testenv]
passenv = PYTHONPATH
deps =
pytest
flake8
Expand Down

0 comments on commit 433fad2

Please sign in to comment.