From b8b7d0c862f3cfb765542981723bf847b78a0184 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 20 Dec 2025 21:22:57 +0100 Subject: [PATCH] python313Packages.cyclopts: 4.3.0 -> 4.4.0 Changelog: https://github.com/BrianPugh/cyclopts/releases/tag/v4.4.0 --- .../python-modules/cyclopts/default.nix | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/cyclopts/default.nix b/pkgs/development/python-modules/cyclopts/default.nix index b480b0c4da75..6bda8b4ce559 100644 --- a/pkgs/development/python-modules/cyclopts/default.nix +++ b/pkgs/development/python-modules/cyclopts/default.nix @@ -4,27 +4,32 @@ buildPythonPackage, docstring-parser, fetchFromGitHub, - hatchling, hatch-vcs, + hatchling, + markdown, + mkdocs, pydantic, + pymdown-extensions, pytest-mock, pytestCheckHook, pyyaml, rich-rst, rich, + sphinx, + syrupy, trio, }: buildPythonPackage rec { pname = "cyclopts"; - version = "4.3.0"; + version = "4.4.0"; pyproject = true; src = fetchFromGitHub { owner = "BrianPugh"; repo = "cyclopts"; tag = "v${version}"; - hash = "sha256-BicM/mUdzHqGOTshO01dzofnquFavQiUWR/wugX+Ars="; + hash = "sha256-D9luX6h1gkfjHk4Y/JakpLBF+KY58qDKDhpWKmiVS2Y="; }; build-system = [ @@ -42,12 +47,19 @@ buildPythonPackage rec { optional-dependencies = { trio = [ trio ]; yaml = [ pyyaml ]; + docs = [ sphinx ]; + mkdocs = [ + mkdocs + markdown + pymdown-extensions + ]; }; nativeCheckInputs = [ pydantic pytest-mock pytestCheckHook + syrupy ] ++ lib.concatAttrValues optional-dependencies; @@ -56,6 +68,8 @@ buildPythonPackage rec { disabledTests = [ # Test requires bash "test_positional_not_treated_as_command" + # Building docs + "build_succeeds" ]; disabledTestPaths = [