mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-netifaces.
* gnu/packages/python.scm (python-netifaces, python2-netifaces): New variables.
This commit is contained in:
parent
0b0e11a9d8
commit
60357f99c4
1 changed files with 29 additions and 0 deletions
|
@ -3178,3 +3178,32 @@ (define-public python-cssselect
|
|||
|
||||
(define-public python2-cssselect
|
||||
(package-with-python2 python-cssselect))
|
||||
|
||||
(define-public python-netifaces
|
||||
(package
|
||||
(name "python-netifaces")
|
||||
(version "0.10.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://pypi.python.org/packages/source/n/netifaces/netifaces-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1plw237a4zib4z8s62g0mrs8gm3kjfrp5sxh6bbk9nl3rdls2mln"))))
|
||||
(build-system python-build-system)
|
||||
(inputs
|
||||
`(("python-setuptools" ,python-setuptools)))
|
||||
(home-page
|
||||
"https://bitbucket.org/al45tair/netifaces")
|
||||
(synopsis
|
||||
"Python module for portable network interface information")
|
||||
(description
|
||||
"Netifaces is a Python module providing information on network
|
||||
interfaces in an easy and portable manner.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python2-netifaces
|
||||
(package-with-python2 python-netifaces))
|
||||
|
|
Loading…
Reference in a new issue