python311Packages.pretty-errors: init at 1.2.25

This commit is contained in:
Gaetan Lepage 2024-05-06 14:31:35 +02:00
parent da7ad4f4ab
commit 217e6434c1
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ 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 ];
};
}

View File

@ -10312,6 +10312,8 @@ self: super: with self; {
pretend = callPackage ../development/python-modules/pretend { };
pretty-errors = callPackage ../development/python-modules/pretty-errors { };
prettytable = callPackage ../development/python-modules/prettytable { };
primecountpy = callPackage ../development/python-modules/primecountpy { };