Skip to content

Commit 5a5e025

Browse files
authored
Merge pull request #18 from dobios/betterparser
added nix file
2 parents 206c2da + da31320 commit 5a5e025

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

shell.nix

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)