We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fb451f commit 433fad2Copy full SHA for 433fad2
shell.nix
@@ -0,0 +1,10 @@
1
+{ pkgs ? import <nixpkgs> {} }:
2
+pkgs.mkShell {
3
+ name = "python-shell";
4
+ buildInputs = with pkgs; [
5
+ python38
6
+ python38Packages.tox
7
+ python38Packages.setuptools
8
+ python38Packages.virtualenv
9
+ ];
10
+}
tox.ini
@@ -2,6 +2,7 @@
envlist = py38
[testenv]
+passenv = PYTHONPATH
deps =
pytest
flake8
0 commit comments