File: shell.nix

package info (click to toggle)
whatthepatch 1.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 576 kB
  • sloc: python: 2,395; makefile: 2
file content (6 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
{ pkgs ? import <nixpkgs> { } }:
let
  whatthepatch = p: p.callPackage ./release.nix { };
  pythonEnv = pkgs.python3.withPackages
    (p: [ p.pytest p.flake8 p.black p.build p.docutils (whatthepatch p) ]);
in pkgs.mkShell { packages = [ pythonEnv ]; }