We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc817c4 commit fc4dac4Copy full SHA for fc4dac4
1 file changed
shell.nix
@@ -0,0 +1,30 @@
1
+{ pkgs ? import <nixpkgs> {} }:
2
+
3
+let
4
+ unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
5
+in pkgs.mkShell {
6
+ buildInputs = with pkgs; [
7
+ virtualenv
8
9
+ python3Packages.tox
10
+ python3Packages.poetry
11
12
+ pre-commit
13
+ python3Packages.requests
14
+ python3Packages.sphinx
15
+ python3Packages.sphinx-rtd-theme
16
+ reno
17
+ python3Packages.mypy
18
+ python3Packages.types-requests
19
+ python3Packages.pytest
20
+ python3Packages.pytest-cov
21
+ python3Packages.coverage
22
+ python3Packages.ipdb
23
+ python3Packages.types-toml
24
+ python3Packages.toml
25
+ python3Packages.black
26
27
28
+ bashInteractive
29
+ ];
30
+}
0 commit comments