python3Packages.tracerite: 1.1.1 -> 1.1.3

This commit is contained in:
p0lyw0lf
2025-06-28 16:18:23 -04:00
parent 6ed432a97e
commit 848d938b11

View File

@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "tracerite";
version = "1.1.1";
version = "1.1.3";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -20,14 +20,13 @@ buildPythonPackage rec {
owner = "sanic-org";
repo = "tracerite";
tag = "v${version}";
hash = "sha256-rI1MNdYl/P64tUHyB3qV9gfLbGbCVOXnEFoqFTkaqgg=";
hash = "sha256-T210vRXFWlTs5ke13DVvZEVsonXiT+g6xSI63+DxLXc=";
};
build-system = [ setuptools-scm ];
dependencies = [
html5tagger
setuptools
];
postInstall = ''
@@ -42,7 +41,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Tracebacks for Humans in Jupyter notebooks";
homepage = "https://github.com/sanic-org/tracerite";
changelog = "https://github.com/sanic-org/tracerite/releases/tag/v${version}";
changelog = "https://github.com/sanic-org/tracerite/releases/tag/${src.tag}";
license = licenses.unlicense;
maintainers = with maintainers; [ p0lyw0lf ];
};