From d6b5e31e99d37a752addbda3da06f945660f9ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 30 Jun 2026 08:44:52 -0700 Subject: [PATCH] python3Packages.rich-rst: 2.0.1 -> 2.0.2 Diff: https://github.com/wasi-master/rich-rst/compare/v2.0.1...v2.0.2 Changelog: https://github.com/wasi-master/rich-rst/releases/tag/v2.0.2 --- pkgs/development/python-modules/rich-rst/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/rich-rst/default.nix b/pkgs/development/python-modules/rich-rst/default.nix index 457138c5e226..15750beec57c 100644 --- a/pkgs/development/python-modules/rich-rst/default.nix +++ b/pkgs/development/python-modules/rich-rst/default.nix @@ -1,33 +1,31 @@ { lib, buildPythonPackage, - docutils, fetchFromGitHub, + pygments, pytestCheckHook, rich, - setuptools-scm, setuptools, }: buildPythonPackage (finalAttrs: { pname = "rich-rst"; - version = "2.0.1"; + version = "2.0.2"; pyproject = true; src = fetchFromGitHub { owner = "wasi-master"; repo = "rich-rst"; tag = "v${finalAttrs.version}"; - hash = "sha256-7nniBu9UnXA0pogv0TDkANTeOcsVYbyDxEr6/r7MxcY="; + hash = "sha256-M4ngZNYPasEqqfRay8aGHDII+LkwLhBp5kF9ryJ5LwQ="; }; build-system = [ setuptools - setuptools-scm ]; dependencies = [ - docutils + pygments rich ];