From a846f29dfff9c7420f44c577bd556f34ac9c6c56 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 28 Feb 2018 15:26:01 +0100 Subject: [PATCH] gnu: python-netifaces: Update to 0.10.6. * gnu/packages/python.scm (python-netifaces): Update to 0.10.6. [source](uri): Use PYPI-URI. [home-page]: Update. --- gnu/packages/python.scm | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index fa8f4902d2..064d79002d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4862,20 +4862,16 @@ (define-public python2-beautifulsoup4 (define-public python-netifaces (package (name "python-netifaces") - (version "0.10.4") + (version "0.10.6") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/n/netifaces/netifaces-" - version - ".tar.gz")) + (uri (pypi-uri "netifaces" version)) (sha256 (base32 - "1plw237a4zib4z8s62g0mrs8gm3kjfrp5sxh6bbk9nl3rdls2mln")))) + "1q7bi5k2r955rlcpspx4salvkkpk28jky67fjbpz2dkdycisak8c")))) (build-system python-build-system) - (home-page - "https://bitbucket.org/al45tair/netifaces") + (home-page "https://github.com/al45tair/netifaces") (synopsis "Python module for portable network interface information") (description