[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53364] [PATCH 27/28] gnu: Add python-urlgrabber.
From: |
Vinicius Monego |
Subject: |
[bug#53364] [PATCH 27/28] gnu: Add python-urlgrabber. |
Date: |
Wed, 19 Jan 2022 14:09:15 +0000 |
* gnu/packages/python-web.scm (python-urlgrabber): New variable.
---
gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index b29be2dc5a..36c77f35ef 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4080,6 +4080,35 @@ variety of features, from launching web applications to
bootstrapping project
layouts.")
(license license:expat)))
+(define-public python-urlgrabber
+ (package
+ (name "python-urlgrabber")
+ (version "4.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "urlgrabber" version))
+ (sha256
+ (base32 "0fg16zlw49cw7pjq9dhpc5vd35d5zz1mlki55m464qxfmfpzhnh7"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "python" "test/runtests.py")))))))
+ (propagated-inputs
+ (list python-pycurl python-setuptools python-six))
+ (home-page "http://urlgrabber.baseurl.org/") ; no HTTPS
+ (synopsis "High-level cross protocol url-grabber")
+ (description
+ "@code{urlgrabber} is a library that unifies access to files available on
+the 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+)))
+
(define-public python2-urlgrabber
(package
(name "python2-urlgrabber")
--
2.30.2
- [bug#53364] [PATCH 12/28] gnu: Remove python2-cssselect., (continued)
- [bug#53364] [PATCH 12/28] gnu: Remove python2-cssselect., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 17/28] gnu: Remove python2-url., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 09/28] gnu: Remove python2-openid., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 07/28] gnu: Remove python2-html2text., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 11/28] gnu: Remove python2-css-parser., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 18/28] gnu: Remove python2-betamax-matchers., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 24/28] gnu: Remove python2-publicsuffix2., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 22/28] gnu: Remove python2-elasticsearch., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 23/28] gnu: Remove python2-publicsuffix., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 28/28] gnu: Remove python2-urlgrabber., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 27/28] gnu: Add python-urlgrabber.,
Vinicius Monego <=
- [bug#53364] [PATCH 26/28] gnu: Remove python2-paste., Vinicius Monego, 2022/01/19
- [bug#53364] [PATCH 25/28] gnu: Remove python2-pastescript., Vinicius Monego, 2022/01/19
- bug#53364: [PATCH 00/28] Cleanup python2 packages in sphinx.scm and python-web.scm, Mathieu Othacehe, 2022/01/20