mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
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>
This commit is contained in:
parent
1bba8142fb
commit
42bcd19e6a
2 changed files with 20 additions and 19 deletions
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -12570,25 +12570,6 @@ multiple values for the same key. An ordered multivalue dictionary is a
|
|||
multivalue dictionary that retains the order of insertions and deletions.")
|
||||
(license license:unlicense)))
|
||||
|
||||
(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 python-setuptools))
|
||||
(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-autopage
|
||||
(package
|
||||
(name "python-autopage")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue