From 7f5a7c4c54c3654d8ca3fa27f40ec23cb4fefdbe Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 23 Mar 2026 23:10:12 +0000 Subject: [PATCH] gnu: Add python-click-8.1. * gnu/packages/python-xyz.scm (python-click-8.1): New variable. Change-Id: Ib574dc4b1ec0d4dc06bb1fd844afbdbea345fc17 --- gnu/packages/python-xyz.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c197a5a15c..cbb4d798a3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8336,6 +8336,25 @@ with sensible defaults out of the box.") (native-inputs (list python-setuptools)))) +(define-public python-click-8.1 + (package + (inherit python-click) + (name "python-click") + (version "8.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pallets/click") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "132frw2g4i3s7kv325ah85wav5h92fv3n00wknhcgr5h3hlqi2pi")))) + (native-inputs + (list less + python-pytest + python-setuptools)))) + (define-public python-clickgen (package (name "python-clickgen")