[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
184/204: gnu: python-mkdocs: Update to 1.3.0.
From: |
guix-commits |
Subject: |
184/204: gnu: python-mkdocs: Update to 1.3.0. |
Date: |
Wed, 20 Apr 2022 02:03:44 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit ec44d6b79cebe421bc1f217dab2ac334263c36d2
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Apr 19 17:14:06 2022 -0400
gnu: python-mkdocs: Update to 1.3.0.
* gnu/packages/python-xyz.scm (python-mkdocs): Update to 1.3.0.
[source]: Use git.
[phases]{check}: New override.
[propagated-inputs]: Remove python-livereload, python-lunr and
python-tornado. Add python-babel, python-ghp-import,
python-importlib-metadata, python-markupsafe, python-mdx-gh-links,
python-mergedeep, python-packaging, python-pyyaml-env-tag and
python-watchdog.
---
gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++----------
1 file changed, 26 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 253a2b45e4..3e1afb3f5a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -648,14 +648,18 @@ HTML")
(define-public python-mkdocs
(package
(name "python-mkdocs")
- (version "1.1.2")
+ (version "1.3.0")
(source
(origin
- (method url-fetch)
- (uri
- (pypi-uri "mkdocs" version))
+ ;; The tests suite appears to be incomplete in the PyPI archive.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mkdocs/mkdocs")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0fgv5zawpyyv0vd4j5y8m4h058lh9jkwfcm0xy4pg7dr09a1xdph"))))
+ (base32
+ "1n5rdllrxvhnxmdrddf55p3s86dakx0rq2gg6bj6pr6jg2pn932b"))))
(build-system python-build-system)
(arguments
`(#:phases
@@ -665,15 +669,27 @@ HTML")
(add-after 'unpack 'patch-requirements
(lambda _
(substitute* "setup.py"
- (("==") ">=")))))))
+ (("==") ">="))))
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "unittest"
+ "discover" "-p" "*tests.py" "mkdocs"
+ "--top-level-directory" ".")))))))
(propagated-inputs
- (list python-click
+ (list python-babel
+ python-click
+ python-ghp-import
+ python-importlib-metadata
python-jinja2
- python-livereload
- python-lunr
python-markdown
+ python-markupsafe
+ python-mdx-gh-links
+ python-mergedeep
+ python-packaging
python-pyyaml
- python-tornado))
+ python-pyyaml-env-tag
+ python-watchdog))
(home-page "https://www.mkdocs.org")
(synopsis "Project documentation with Markdown")
(description "MkDocs is a static site generator geared towards building
- 190/204: gnu: python-miio: Update to 0.5.11., (continued)
- 190/204: gnu: python-miio: Update to 0.5.11., guix-commits, 2022/04/20
- 193/204: gnu: weasyprint: Update to 54.3., guix-commits, 2022/04/20
- 202/204: gnu: python-flask-wtf: Update to 1.0.1., guix-commits, 2022/04/20
- 197/204: gnu: setzer: Add python-wrapper to fix build., guix-commits, 2022/04/20
- 204/204: snippets: Add a 'remove' snippet., guix-commits, 2022/04/20
- 164/204: gnu: python-types-dataclasses: Fix typo., guix-commits, 2022/04/20
- 165/204: gnu: python-cmarkgfm: Update to 0.8.0., guix-commits, 2022/04/20
- 166/204: gnu: python-readme-renderer: Update to 34.0., guix-commits, 2022/04/20
- 183/204: gnu: Add python-mdx-gh-links., guix-commits, 2022/04/20
- 199/204: gnu: python-keyring: Fix test suite., guix-commits, 2022/04/20
- 184/204: gnu: python-mkdocs: Update to 1.3.0.,
guix-commits <=
- 200/204: gnu: Remove python2-keyring., guix-commits, 2022/04/20
- 201/204: gnu: python-pingouin: Update to 0.5.1., guix-commits, 2022/04/20
- 82/204: gnu: Add python-ufolib2., guix-commits, 2022/04/20
- 122/204: gnu: Add python-sphinx-theme-builder., guix-commits, 2022/04/20
- 125/204: gnu: texlive-polyglossia: Rename and fix package., guix-commits, 2022/04/20
- 127/204: gnu: python-websockets: Update to 10.3 and enable tests., guix-commits, 2022/04/20
- 131/204: gnu: Add python-openapi-spec-validator., guix-commits, 2022/04/20
- 138/204: gnu: Add python-socksio., guix-commits, 2022/04/20
- 151/204: gnu: python-numba: Update to 0.55.1., guix-commits, 2022/04/20
- 154/204: gnu: python-scikit-learn: Parallelize build and test suite., guix-commits, 2022/04/20