[go: up one dir, main page]

color-eyre 0.5.4-rc.2

An error report handler for panics and eyre::Reports for colorful, consistent, and well formatted error reports for all kinds of errors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs ? import <nixpkgs> { } }:
let
  inherit (pkgs) stdenv lib python38;

  py = python38.withPackages (pypkgs: with pypkgs; [ beautifulsoup4 ]);

in stdenv.mkDerivation {
  pname = "color-eyre-scripts";
  version = "0.0.0";

  src = ./.;
  buildInputs = [ py ];
}