forked from csernazs/pytest-httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.nix
More file actions
31 lines (26 loc) · 634 Bytes
/
shell.nix
File metadata and controls
31 lines (26 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ pkgs ? import <nixpkgs> { } }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
pkgs.mkShell {
buildInputs = with pkgs; [
virtualenv
python3Packages.tox
python3Packages.poetry-core
pre-commit
python3Packages.requests
python3Packages.sphinx
python3Packages.sphinx-rtd-theme
reno
python3Packages.mypy
python3Packages.types-requests
python3Packages.pytest
python3Packages.pytest-cov
python3Packages.coverage
python3Packages.ipdb
python3Packages.types-toml
python3Packages.toml
python3Packages.black
bashInteractive
];
}