From c2ad4d701e43250f745b914ba8d00accd9463f26 Mon Sep 17 00:00:00 2001 From: Ben Woodcroft Date: Fri, 23 Sep 2016 23:37:02 +1000 Subject: gnu: python-xlrd: Update to 1.0.0. * gnu/packages/python.scm (python-xlrd, python2-xlrd): Update to 1.0.0. --- gnu/packages/python.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index cf86c71970..742b246841 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5868,19 +5868,19 @@ object to help create WSGI responses.") (define-public python-xlrd (package (name "python-xlrd") - (version "0.9.4") + (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://pypi.python.org/packages/source/x/" "xlrd/xlrd-" version ".tar.gz")) (sha256 (base32 - "0wpa55nvidmm5m2qr622dsh3cj46akdk0h3zjgzschcmydck73cf")))) + "0s8hjiz01vbhy85xalrz0qlsmd9ypf36zjqrf97hh984spapvy0g")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases - ;; Current test in setup.py does not work as of 0.9.4, so use nose to + ;; Current test in setup.py does not work as of 1.0.0, so use nose to ;; run tests instead for now. (replace 'check (lambda _ (zero? (system* "nosetests"))))))) (native-inputs `(("python-nose" ,python-nose) -- cgit v1.3 From e775f48ebe4bff3cc398a30398e82eb46aa67296 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sat, 8 Oct 2016 23:41:01 +0300 Subject: gnu: python-xlrd: Update source location. * gnu/packages/python.scm (python-xlrd)[source]: Use 'pypi-uri' syntax. --- gnu/packages/python.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 742b246841..c7d9e6fc12 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5871,8 +5871,7 @@ object to help create WSGI responses.") (version "1.0.0") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/x/" - "xlrd/xlrd-" version ".tar.gz")) + (uri (pypi-uri "xlrd" version)) (sha256 (base32 "0s8hjiz01vbhy85xalrz0qlsmd9ypf36zjqrf97hh984spapvy0g")))) -- cgit v1.3 From 73acc19334b9bdd782fd88233959dc7f2114a304 Mon Sep 17 00:00:00 2001 From: ng0 Date: Sun, 18 Sep 2016 13:16:23 +0000 Subject: gnu: Add python-socksipy-branch. * gnu/packages/python.scm (python-socksipy-branch): New variable. Signed-off-by: Efraim Flashner --- gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index c7d9e6fc12..a9fd8eb4a9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3736,6 +3736,34 @@ routines such as routines for numerical integration and optimization.") (define-public python2-scipy (package-with-python2 python-scipy)) +(define-public python-socksipy-branch + (package + (name "python-socksipy-branch") + (version "1.01") + (source + (origin + (method url-fetch) + (uri (pypi-uri "SocksiPy-branch" version)) + (sha256 + (base32 + "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ; There are no tests + (home-page "https://code.google.com/archive/p/socksipy-branch/") + (synopsis "Python SOCKS module") + (description + "SocksiPy - A Python SOCKS client module. It provides a +socket-like interface that supports connections to any TCP +service through the use of a SOCKS4, SOCKS5 or HTTP proxy. +The original version was developed by Dan Haim, this is a +branch created by Mario Vilas to address some open issues, +as the original project seems to have been abandoned circa 2007.") + (license license:bsd-3))) + +(define-public python2-socksipy-branch + (package-with-python2 python-socksipy-branch)) + (define-public python-sqlalchemy (package (name "python-sqlalchemy") -- cgit v1.3