5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
40 lines
720 B
Nix
40 lines
720 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, wheel
|
|
, colorama
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pretty-errors";
|
|
version = "1.2.25";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "pretty_errors";
|
|
inherit version;
|
|
hash = "sha256-oWulx1LIfCY7+S+LS1hiTjseKScak5H1ZPErhuk8Z1U=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
dependencies = [
|
|
colorama
|
|
];
|
|
|
|
pythonImportsCheck = [ "pretty_errors" ];
|
|
|
|
# No test
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Prettifies Python exception output to make it legible";
|
|
homepage = "https://pypi.org/project/pretty-errors/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|