We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 206c2da + da31320 commit 5a5e025Copy full SHA for 5a5e025
1 file changed
shell.nix
@@ -0,0 +1,29 @@
1
+{ pkgs ? import <nixpkgs> { } }:
2
+
3
+let
4
+ pythonEnv = pkgs.python3.withPackages(ps: with ps; [
5
+ black
6
+ build
7
+ click
8
+ colorama
9
+ isort
10
+ lexid
11
+ looseversion
12
+ mypy-extensions
13
+ packaging
14
+ pathspec
15
+ pip-tools
16
+ platformdirs
17
+ pyproject-hooks
18
+ toml
19
+ tomli
20
+ typing-extensions
21
+ wheel
22
+ ]);
23
24
+in
25
+pkgs.mkShell {
26
+ packages = [
27
+ pythonEnv
28
+ ];
29
+}
0 commit comments