gnu: Add python-requests-ftp.
* gnu/packages/python-web.scm (python-requests-ftp): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
34d150dcb2
commit
a96873565d
1 changed files with 22 additions and 0 deletions
|
@ -2029,6 +2029,28 @@ with python-requests.")
|
||||||
`(;; FIXME: Some tests require network access.
|
`(;; FIXME: Some tests require network access.
|
||||||
#:tests? #f))))
|
#:tests? #f))))
|
||||||
|
|
||||||
|
(define-public python-requests-ftp
|
||||||
|
(package
|
||||||
|
(name "python-requests-ftp")
|
||||||
|
(version "0.3.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "requests-ftp" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0yh5v21v36dsjsgv4y9dx4mmz35741l5jf6pbq9w19d8rfsww13m"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-requests" ,python-requests)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/Lukasa/requests-ftp")
|
||||||
|
(synopsis "FTP Transport Adapter for Requests")
|
||||||
|
(description
|
||||||
|
"Requests-FTP is an implementation of a simple FTP transport
|
||||||
|
adapter for use with the Requests library.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python-oauthlib
|
(define-public python-oauthlib
|
||||||
(package
|
(package
|
||||||
(name "python-oauthlib")
|
(name "python-oauthlib")
|
||||||
|
|
Reference in a new issue