nixpkgs/pkgs/development/python-modules/pretty-errors/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

39 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 = {
description = "Prettifies Python exception output to make it legible";
homepage = "https://pypi.org/project/pretty-errors/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}