gnu: python-mdit-py-plugins: Update to 0.3.1.
* gnu/packages/python-xyz.scm (python-mdit-py-plugins): Update to 0.3.1. [source]: Fetch from git. [build-system]: Use pyproject-build-system. [propagated-inputs]: Add python-attrs. [native-inputs]: Add python-flit-core. [description]: Remove extraneous white space.
This commit is contained in:
parent
d4f65bc4ba
commit
db753d6420
1 changed files with 18 additions and 16 deletions
|
@ -744,27 +744,30 @@ that best match text queries.")
|
||||||
(define-public python-mdit-py-plugins
|
(define-public python-mdit-py-plugins
|
||||||
(package
|
(package
|
||||||
(name "python-mdit-py-plugins")
|
(name "python-mdit-py-plugins")
|
||||||
(version "0.3.0")
|
(version "0.3.1")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch) ;for tests
|
||||||
(method url-fetch)
|
(uri (git-reference
|
||||||
(uri (pypi-uri "mdit-py-plugins" version))
|
(url "https://github.com/executablebooks/mdit-py-plugins")
|
||||||
(sha256
|
(commit (string-append "v" version))))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"0l4pwsn2q30j160zjg79qa8v2brc4zl295rgrkpbfspcxr8lzhpc"))))
|
(sha256
|
||||||
(build-system python-build-system)
|
(base32
|
||||||
(propagated-inputs (list python-markdown-it-py))
|
"00ybbfb6dzn9q5qnvnm8bmhd84s215ik7pcdb4r35zhwiv2ikizz"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-markdown-it-py
|
||||||
|
python-attrs))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-coverage
|
(list python-coverage
|
||||||
|
python-flit-core
|
||||||
python-pytest
|
python-pytest
|
||||||
python-pytest-cov
|
python-pytest-cov
|
||||||
python-pytest-regressions))
|
python-pytest-regressions))
|
||||||
(home-page "https://github.com/executablebooks/mdit-py-plugins")
|
(home-page "https://github.com/executablebooks/mdit-py-plugins")
|
||||||
(synopsis "Collection of plugins for markdown-it-py")
|
(synopsis "Collection of plugins for markdown-it-py")
|
||||||
(description
|
(description "This package contains a collection of plugins for
|
||||||
"This package contains a collection of plugins for @code{markdown-it-py}
|
@code{markdown-it-py} like:
|
||||||
like:
|
|
||||||
|
|
||||||
@enumerate
|
@enumerate
|
||||||
@item amsmath,
|
@item amsmath,
|
||||||
@item attrs,
|
@item attrs,
|
||||||
|
@ -775,8 +778,7 @@ like:
|
||||||
@item footnote,
|
@item footnote,
|
||||||
@item textmath, and
|
@item textmath, and
|
||||||
@item wordcount.
|
@item wordcount.
|
||||||
@end enumerate
|
@end enumerate")
|
||||||
")
|
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-mdurl
|
(define-public python-mdurl
|
||||||
|
|
Reference in a new issue