gnu: python-oauthlib: Update to 3.0.1.
* gnu/packages/python-web.scm (python-oauthlib): Update to 3.0.1. [arguments]: Replace check phase with pytest invokation. [native-inputs]: Remove PYTHON-NOSE. Add PYTHON-PYTEST and PYTHON-PYTEST-COV. [properties]: Remove. (python2-oauthlib)[native-inputs]: Remove PYTHON2-UNITTEST2.
This commit is contained in:
parent
e7c67f1b69
commit
c8a7cc69c9
|
@ -1433,16 +1433,22 @@ with python-requests.")
|
||||||
(define-public python-oauthlib
|
(define-public python-oauthlib
|
||||||
(package
|
(package
|
||||||
(name "python-oauthlib")
|
(name "python-oauthlib")
|
||||||
(version "1.0.3")
|
(version "3.0.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "oauthlib" version))
|
(uri (pypi-uri "oauthlib" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1bfrj70vdjxjw74khbyh6f0dksv7p5rh2346jnlrffyacd3gwjzg"))))
|
"163jg4a8f7c5ki655grrr47kgljy12wri3qly7ijf64sk1fjrqqc"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(invoke "pytest" "-vv"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-nose" ,python-nose)
|
`(("python-pytest" ,python-pytest)
|
||||||
|
("python-pytest-cov" ,python-pytest-cov)
|
||||||
("python-mock" ,python-mock)))
|
("python-mock" ,python-mock)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-cryptography" ,python-cryptography)
|
`(("python-cryptography" ,python-cryptography)
|
||||||
|
@ -1453,15 +1459,10 @@ with python-requests.")
|
||||||
(description
|
(description
|
||||||
"Oauthlib is a generic, spec-compliant, thorough implementation of the
|
"Oauthlib is a generic, spec-compliant, thorough implementation of the
|
||||||
OAuth request-signing logic.")
|
OAuth request-signing logic.")
|
||||||
(license license:bsd-3)
|
(license license:bsd-3)))
|
||||||
(properties `((python2-variant . ,(delay python2-oauthlib))))))
|
|
||||||
|
|
||||||
(define-public python2-oauthlib
|
(define-public python2-oauthlib
|
||||||
(let ((base (package-with-python2 (strip-python2-variant python-oauthlib))))
|
(package-with-python2 python-oauthlib))
|
||||||
(package
|
|
||||||
(inherit base)
|
|
||||||
(native-inputs `(("python2-unittest2" ,python2-unittest2)
|
|
||||||
,@(package-native-inputs base))))))
|
|
||||||
|
|
||||||
(define-public python-rauth
|
(define-public python-rauth
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue