summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 01:55:13 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:22 +0100
commitec6b1c830c7df57cf5b016a9f05e534cb369192e (patch)
tree50890d0021ba740fe112b1e9e158f45869a235f4 /gnu/packages/python-build.scm
parent3d169ca4463a9aabf288a411cc08b8fa6f8c17db (diff)
gnu: python-autocommand: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-autocommand): Move from here… * gnu/packages/python-build.scm (python-autocommand): …to here. [native-inputs]: Replace python-setuptools by python-setuptools-bootstrap. autocommand: Adapt native-inputs. Change-Id: I6999788c79a3904a22bebbff352c44a11df977a1 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index df66b1bafe3..866560168d8 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -62,6 +62,26 @@
;;; These are dependencies used by the build systems contained herein; they
;;; feel a bit out of place but are kept here to prevent circular module
;;; dependencies.
+(define-public python-autocommand
+ (package
+ (name "python-autocommand")
+ (version "2.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "autocommand" version))
+ (sha256
+ (base32 "0d2zjms5xm236k46la5pnl7i7hs3a12jlp12cw8lk5jm7i1fk3c7"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest-bootstrap
+ python-setuptools-bootstrap))
+ (home-page "https://github.com/Lucretiel/autocommand")
+ (synopsis "Python library to build a command-line from a function")
+ (description "@code{autocommand} is library to automatically generate and
+run simple @code{argparse} parsers from function signatures.")
+ (license license:lgpl3+)))
+
(define-public python-pathspec
(package
(name "python-pathspec")