File: shell.nix

package info (click to toggle)
pytest-httpserver 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 908 kB
  • sloc: python: 2,382; makefile: 77; sh: 21
file content (31 lines) | stat: -rw-r--r-- 634 bytes parent folder | download
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
  ];
}