mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-mwclient: Update to 0.10.0.
* gnu/packages/python-xyz.scm (python-mwclient): Update to 0.10.0. [source]: Download using git-fetch. [propagated-inputs]: Remove python-requests. [native-inputs]: Remove python-pytest-pep8, python-pytest-cov. Add python-pytest-runner.
This commit is contained in:
parent
a9722d0dbf
commit
957c683354
1 changed files with 9 additions and 11 deletions
|
@ -12809,29 +12809,27 @@ exception message with a traceback that points to the culprit.")
|
||||||
(define-public python-mwclient
|
(define-public python-mwclient
|
||||||
(package
|
(package
|
||||||
(name "python-mwclient")
|
(name "python-mwclient")
|
||||||
(version "0.8.4")
|
(version "0.10.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; The PyPI version wouldn't contain tests.
|
;; The PyPI version wouldn't contain tests.
|
||||||
(uri (string-append "https://github.com/mwclient/mwclient/archive/"
|
(uri (git-reference
|
||||||
"v" version ".tar.gz"))
|
(url "https://github.com/mwclient/mwclient")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jj0yhilkjir00719fc7w133x7hdyhkxhk6xblla4asig45klsfv"))))
|
"1c3q6lwmb05yqywc4ya98ca7hsl15niili8rccl4n1yqp77c103v"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-requests" ,python-requests)
|
`(("python-requests-oauthlib" ,python-requests-oauthlib)
|
||||||
("python-requests-oauthlib"
|
|
||||||
,python-requests-oauthlib)
|
|
||||||
("python-six" ,python-six)))
|
("python-six" ,python-six)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-mock" ,python-mock)
|
`(("python-mock" ,python-mock)
|
||||||
("python-pytest" ,python-pytest)
|
("python-pytest" ,python-pytest)
|
||||||
("python-pytest-pep8" ,python-pytest-pep8)
|
|
||||||
("python-pytest-cache" ,python-pytest-cache)
|
|
||||||
("python-pytest-cov" ,python-pytest-cov)
|
("python-pytest-cov" ,python-pytest-cov)
|
||||||
|
("python-pytest-runner" ,python-pytest-runner)
|
||||||
("python-responses" ,python-responses)))
|
("python-responses" ,python-responses)))
|
||||||
(home-page "https://github.com/btongminh/mwclient")
|
(home-page "https://github.com/btongminh/mwclient")
|
||||||
(synopsis "MediaWiki API client")
|
(synopsis "MediaWiki API client")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue