[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31121] [PATCH 1/3] gnu: Add python2-urlgrabber.
From: |
Tomáš Čech |
Subject: |
[bug#31121] [PATCH 1/3] gnu: Add python2-urlgrabber. |
Date: |
Tue, 17 Apr 2018 23:38:16 +0200 |
* gnu/packages/python-web (python2-urlgrabber): New variable.
---
gnu/packages/python-web.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 58c5566f4..5d9caf110 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -23,6 +23,7 @@
;;; Copyright © 2017 Oleg Pykhalov <address@hidden>
;;; Copyright © 2015, 2016 David Thompson <address@hidden>
;;; Copyright © 2017 Mark Meyer <address@hidden>
+;;; Copyright © 2018 Tomáš Čech <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2486,3 +2487,24 @@ layouts.")
(define-public python2-pastescript
(package-with-python2 python-pastescript))
+
+(define-public python2-urlgrabber
+ (package
+ (name "python2-urlgrabber")
+ (version "3.10.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "urlgrabber" version))
+ (sha256
+ (base32 "0w1h7hlsq406bxfy2pn4i9bd003bwl0q9b7p03z3g6yl0d21ddq5"))))
+ (build-system python-build-system)
+ (arguments `(#:python ,python-2)) ;; urlgrabber supports python2 only
+ (home-page "http://urlgrabber.baseurl.org")
+ (synopsis "High-level cross protocol url-grabber")
+ (description "@code{urlgrabber} is Python2 library that unifies access to
+files available on web, FTP or locally. It supports HTTP, FTP and file://
+protocols, it supports features like HTTP keep-alive, reget, throttling and
+more.")
+ (license license:lgpl2.1+)))
+
--
2.16.3
- [bug#31121] [PATCH 2/3] gnu: Add python-m2crypto, python2-m2crypto., (continued)
- [bug#31121] [PATCH 3/3] gnu: Add osc., Tomáš Čech, 2018/04/17
- [bug#31121] [PATCH 3/3] gnu: Add osc., Marius Bakke, 2018/04/18
- [bug#31121] [PATCH 3/3] gnu: Add osc., Tomáš Čech, 2018/04/18
- [bug#31121] [PATCH 3/3] gnu: Add osc., Marius Bakke, 2018/04/19
[bug#31121] [PATCH 2/3] gnu: Add python-m2crypto, python2-m2crypto., Marius Bakke, 2018/04/16
[bug#31121] [PATCH 1/3] gnu: Add python2-urlgrabber, Marius Bakke, 2018/04/16