mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 05:07:11 -05:00
gnu: Add python-ipaddress.
* gnu/packages/python-xyz.scm (python-ipaddress): New variable; (python2-ipaddress): Use package-with-python2. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
ea18b4c529
commit
8a1de89432
1 changed files with 6 additions and 6 deletions
|
@ -11419,9 +11419,9 @@ (define-public python-pyasn1-modules
|
||||||
(define-public python2-pyasn1-modules
|
(define-public python2-pyasn1-modules
|
||||||
(package-with-python2 python-pyasn1-modules))
|
(package-with-python2 python-pyasn1-modules))
|
||||||
|
|
||||||
(define-public python2-ipaddress
|
(define-public python-ipaddress
|
||||||
(package
|
(package
|
||||||
(name "python2-ipaddress")
|
(name "python-ipaddress")
|
||||||
(version "1.0.23")
|
(version "1.0.23")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -11430,17 +11430,17 @@ (define-public python2-ipaddress
|
||||||
(base32
|
(base32
|
||||||
"1qp743h30s04m3cg3yk3fycad930jv17q7dsslj4mfw0jlvf1y5p"))))
|
"1qp743h30s04m3cg3yk3fycad930jv17q7dsslj4mfw0jlvf1y5p"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
|
||||||
`(#:python ,python-2))
|
|
||||||
(home-page "https://github.com/phihag/ipaddress")
|
(home-page "https://github.com/phihag/ipaddress")
|
||||||
(synopsis "IP address manipulation library")
|
(synopsis "IP address manipulation library")
|
||||||
(description
|
(description
|
||||||
"This package provides a fast, lightweight IPv4/IPv6 manipulation library
|
"This package provides a fast, lightweight IPv4/IPv6 manipulation library
|
||||||
in Python. This library is used to create, poke at, and manipulate IPv4 and
|
in Python. This library is used to create, poke at, and manipulate IPv4 and
|
||||||
IPv6 addresses and networks. This is a port of the Python 3.3 ipaddress
|
IPv6 addresses and networks.")
|
||||||
module to older versions of Python.")
|
|
||||||
(license license:psfl)))
|
(license license:psfl)))
|
||||||
|
|
||||||
|
(define-public python2-ipaddress
|
||||||
|
(package-with-python2 python-ipaddress))
|
||||||
|
|
||||||
(define-public python-asn1tools
|
(define-public python-asn1tools
|
||||||
(package
|
(package
|
||||||
(name "python-asn1tools")
|
(name "python-asn1tools")
|
||||||
|
|
Loading…
Reference in a new issue