Skip to content

Commit fc4dac4

Browse files
committed
add shell.nix
1 parent bc817c4 commit fc4dac4

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

shell.nix

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

Comments
 (0)