mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 09:37:03 +01:00
gnu: Add python2-argparse.
* gnu/packages/python-xyz.scm (python2-argparse): New variable.
This commit is contained in:
parent
3942bf5e4c
commit
70daf82f28
1 changed files with 21 additions and 0 deletions
|
@ -11649,6 +11649,27 @@ (define-public python-mando
|
|||
(define-public python2-mando
|
||||
(package-with-python2 python-mando))
|
||||
|
||||
(define-public python2-argparse
|
||||
(package
|
||||
(name "python2-argparse")
|
||||
(version "1.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "argparse" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1r6nznp64j68ih1k537wms7h57nvppq0szmwsaf99n71bfjqkc32"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:python ,python-2))
|
||||
(home-page "https://github.com/ThomasWaldmann/argparse/")
|
||||
(synopsis "Python command-line parsing library")
|
||||
(description
|
||||
"This package is mostly for people who want to have @code{argparse} on
|
||||
older Pythons because it was not part of the standard library back then.")
|
||||
(license license:psfl)))
|
||||
|
||||
(define-public python-fudge
|
||||
(package
|
||||
(name "python-fudge")
|
||||
|
|
Loading…
Reference in a new issue