diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-14 22:02:23 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:39 +0100 |
| commit | 7aeab388fabdd4f3c6d484c711b1c69a8cf07883 (patch) | |
| tree | 50a6dd461abd447c98a1981db9e10884300d9138 /gnu/packages/python-xyz.scm | |
| parent | 1f549f87b759892198b71e083b90b7e3d951b764 (diff) | |
gnu: python-mako: Update to 1.3.10.
* gnu/packages/python-xyz.scm (python-mako): Update to 1.3.10.
[buid-system]: Use pyproject.
[arguments] <phases>: Use default 'check.
[native-inputs]: Remove python-mock; add python-setuptools and
python-wheel.
Change-Id: I3bf921cd52ee4671ab34820fe1a35b34db226251
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f986121899..7134af0b68 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21219,27 +21219,20 @@ of @acronym{REGEXPs, regular expressions}.") (define-public python-mako (package (name "python-mako") - (version "1.2.2") + (version "1.3.10") (source (origin (method url-fetch) - (uri (pypi-uri "Mako" version)) + (uri (pypi-uri "mako" version)) (sha256 - (base32 - "0gqnv9py1dqp01jmf5zxp0vj2dbhq1l9zy55fai319iv6sdqc91p")))) - (build-system python-build-system) - (arguments - `(#:phases (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (if tests? - (invoke "pytest" "-vv") - (format #t "test suite not run~%")) - #t))))) + (base32 "0a7ala6k7kn094k3g02b85xfkr20yk0w6a0acgjsfgsq75prlmwr")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) (propagated-inputs (list python-markupsafe)) - (native-inputs - (list python-mock python-pytest)) (home-page "https://www.makotemplates.org/") (synopsis "Templating language for Python") (description "Mako is a templating language for Python that compiles |
