From c31d183b72e473493c36c1ef297ff5495e345095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 30 Mar 2026 20:40:05 -0700 Subject: [PATCH] python3Packages.pycrashreport: 1.2.8 -> 2.0.0 Diff: https://github.com/doronz88/pycrashreport/compare/v1.2.8...v2.0.0 Changelog: https://github.com/doronz88/pycrashreport/releases/tag/v2.0.0 --- .../python-modules/pycrashreport/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/pycrashreport/default.nix b/pkgs/development/python-modules/pycrashreport/default.nix index 79153ee52b87..e7401a47f6eb 100644 --- a/pkgs/development/python-modules/pycrashreport/default.nix +++ b/pkgs/development/python-modules/pycrashreport/default.nix @@ -1,25 +1,23 @@ { buildPythonPackage, - cached-property, - click, fetchFromGitHub, - la-panic, lib, pytestCheckHook, setuptools, setuptools-scm, + typer, }: buildPythonPackage rec { pname = "pycrashreport"; - version = "1.2.8"; + version = "2.0.0"; pyproject = true; src = fetchFromGitHub { owner = "doronz88"; repo = "pycrashreport"; tag = "v${version}"; - hash = "sha256-CjFMixbnRlCT2tnBgpYjnOXg+SJgUtzsVNazPtNyfYQ="; + hash = "sha256-huiPTpcNwRY8IMHe4y4H/OBCdlDWhBiU9u1xTvLSDQk="; }; build-system = [ @@ -28,9 +26,7 @@ buildPythonPackage rec { ]; dependencies = [ - cached-property - click - la-panic + typer ]; pythonImportsCheck = [ "pycrashreport" ];