summaryrefslogtreecommitdiff
path: root/gnu
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
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')
-rw-r--r--gnu/packages/python-build.scm20
-rw-r--r--gnu/packages/python-xyz.scm19
2 files changed, 20 insertions, 19 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 @@
62;;; These are dependencies used by the build systems contained herein; they 62;;; These are dependencies used by the build systems contained herein; they
63;;; feel a bit out of place but are kept here to prevent circular module 63;;; feel a bit out of place but are kept here to prevent circular module
64;;; dependencies. 64;;; dependencies.
65(define-public python-autocommand
66 (package
67 (name "python-autocommand")
68 (version "2.2.2")
69 (source
70 (origin
71 (method url-fetch)
72 (uri (pypi-uri "autocommand" version))
73 (sha256
74 (base32 "0d2zjms5xm236k46la5pnl7i7hs3a12jlp12cw8lk5jm7i1fk3c7"))))
75 (build-system pyproject-build-system)
76 (native-inputs
77 (list python-pytest-bootstrap
78 python-setuptools-bootstrap))
79 (home-page "https://github.com/Lucretiel/autocommand")
80 (synopsis "Python library to build a command-line from a function")
81 (description "@code{autocommand} is library to automatically generate and
82run simple @code{argparse} parsers from function signatures.")
83 (license license:lgpl3+)))
84
65(define-public python-pathspec 85(define-public python-pathspec
66 (package 86 (package
67 (name "python-pathspec") 87 (name "python-pathspec")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ed511c2f7a0..bbf954204e2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12608,25 +12608,6 @@ multiple values for the same key. An ordered multivalue dictionary is a
12608multivalue dictionary that retains the order of insertions and deletions.") 12608multivalue dictionary that retains the order of insertions and deletions.")
12609 (license license:unlicense))) 12609 (license license:unlicense)))
12610 12610
12611(define-public python-autocommand
12612 (package
12613 (name "python-autocommand")
12614 (version "2.2.2")
12615 (source
12616 (origin
12617 (method url-fetch)
12618 (uri (pypi-uri "autocommand" version))
12619 (sha256
12620 (base32 "0d2zjms5xm236k46la5pnl7i7hs3a12jlp12cw8lk5jm7i1fk3c7"))))
12621 (build-system pyproject-build-system)
12622 (native-inputs
12623 (list python-pytest python-setuptools))
12624 (home-page "https://github.com/Lucretiel/autocommand")
12625 (synopsis "Python library to build a command-line from a function")
12626 (description "@code{autocommand} is library to automatically generate and
12627run simple @code{argparse} parsers from function signatures.")
12628 (license license:lgpl3+)))
12629
12630(define-public python-autopage 12611(define-public python-autopage
12631 (package 12612 (package
12632 (name "python-autopage") 12613 (name "python-autopage")