mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-typogrify: Update to 2.1.0.
Development of <https://github.com/mintchaos/typogrify> has been moved to a maintained fork of this project. Please file any issues and pull requests at that repository <https://github.com/justinmayer/typogrify>. * gnu/packages/python-xyz.scm (python-typogrify): Update to 2.1.0. [build-system]: Use pyproject. [arguments] <test-flags>: Provide test options as seen in GitHub Actions workflow. [home-page]: Fix URL. [native-inputs]: Remove python-nose; add python-pytest and python-hatchling. Change-Id: I77a22b795b8912b722ef8c67e11fb555dd4b7194
This commit is contained in:
parent
bb55c28ea7
commit
d709cb4b2e
1 changed files with 17 additions and 17 deletions
|
@ -35776,26 +35776,26 @@ entities
|
||||||
(define-public python-typogrify
|
(define-public python-typogrify
|
||||||
(package
|
(package
|
||||||
(name "python-typogrify")
|
(name "python-typogrify")
|
||||||
(version "2.0.7")
|
(version "2.1.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "typogrify" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "typogrify" version))
|
||||||
(base32
|
(sha256
|
||||||
"0f6b2gnnxjbx1fbmkcscc6qjr4hi78kwm1wx4b766ha3va66dr4b"))))
|
(base32 "1vk17q04sax8rpdqll5zldnf6l3ixgknbnn9wimnwah3k1701aph"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:test-flags
|
||||||
(replace 'check
|
#~(list "--doctest-modules"
|
||||||
(lambda _
|
"typogrify/filters.py"
|
||||||
(invoke "nosetests" "-v"))))))
|
"typogrify/packages/titlecase/tests.py")))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-hatchling))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-smartypants))
|
(list python-smartypants))
|
||||||
(native-inputs
|
(home-page "https://github.com/justinmayer/typogrify")
|
||||||
;; For tests.
|
|
||||||
(list python-nose))
|
|
||||||
(home-page "https://github.com/mintchaos/typogrify")
|
|
||||||
(synopsis "Filters to transform text into typographically-improved HTML")
|
(synopsis "Filters to transform text into typographically-improved HTML")
|
||||||
(description
|
(description
|
||||||
"@code{typogrify} provides a set of custom filters that automatically
|
"@code{typogrify} provides a set of custom filters that automatically
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue