mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add python-wget.
* gnu/packages/python-xyz.scm (python-wget): New variable.
This commit is contained in:
parent
1eee899617
commit
9c9704a9d7
1 changed files with 19 additions and 0 deletions
|
@ -17475,6 +17475,25 @@ (define-public python-watchdog
|
|||
but portable.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-wget
|
||||
(package
|
||||
(name "python-wget")
|
||||
(version "3.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "wget" version ".zip"))
|
||||
(sha256
|
||||
(base32
|
||||
"0qb0y7ipby42m4m7h0ipazpdyc3bn9xi46lvifcwwl5albn31rim"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs `(("unzip" ,unzip)))
|
||||
(home-page "https://bitbucket.org/techtonik/python-wget/")
|
||||
(synopsis "Pure Python download utility")
|
||||
(description "The python-wget library provides an API to download files
|
||||
with features similar to the @command{wget} utility.")
|
||||
(license license:unlicense)))
|
||||
|
||||
(define-public offlate
|
||||
(package
|
||||
(name "offlate")
|
||||
|
|
Loading…
Reference in a new issue