mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add python-packaging.
This commit is contained in:
parent
8347c12291
commit
c0f5b80295
1 changed files with 32 additions and 0 deletions
|
@ -14767,3 +14767,35 @@ (define-public python-flask-migrate
|
|||
|
||||
(define-public python2-flask-migrate
|
||||
(package-with-python2 python-flask-migrate))
|
||||
|
||||
(define-public python-packaging
|
||||
(package
|
||||
(name "python-packaging")
|
||||
(version "16.8")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "packaging" version))
|
||||
(sha256
|
||||
(base32
|
||||
"17k1xbjshackwvbsnxqixbph8rbqhz4bf4g3al5xyzhavxgq6l2x"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-pretend" ,python-pretend)
|
||||
("python-pytest" ,python-pytest)))
|
||||
(propagated-inputs
|
||||
`(("python-pyparsing" ,python-pyparsing)
|
||||
("python-six" ,python-six)))
|
||||
(home-page "https://github.com/pypa/packaging")
|
||||
(synopsis "Core utilities for Python packages")
|
||||
(description "Packaging is a Python module for dealing with Python packages.
|
||||
It offers an interface for working with package versions, names, and dependency
|
||||
information.")
|
||||
;; From 'LICENSE': This software is made available under the terms of
|
||||
;; *either* of the licenses found in LICENSE.APACHE or LICENSE.BSD.
|
||||
;; Contributions to this software is made under the terms of *both* these
|
||||
;; licenses.
|
||||
(license (list license:asl2.0 license:bsd-2))))
|
||||
|
||||
(define-public python2-packaging
|
||||
(package-with-python2 python-packaging))
|
||||
|
|
Loading…
Reference in a new issue