summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
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 @@
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")