summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-07-30 19:21:48 -0300
committerVinicius Monego <monego@posteo.net>2025-08-02 09:15:49 -0300
commit85b859a340813cbdb72c4778e5d860ef0b4d33e5 (patch)
tree0135ac529c02ae53a70abcbcc409e6e5d5c8a453
parentf10da5043b6ed7bdabaf21d7562991550f4154e3 (diff)
gnu: python-pystache: Update to 0.6.8.
* gnu/packages/python-xyz.scm (python-pystache): Update to 0.6.8. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I25d4373bcbac47dcc5a66ca8ad62a1d1cb75645a
-rw-r--r--gnu/packages/python-xyz.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6453abe2c8d..35e73aaf942 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8014,16 +8014,17 @@ Mako, and Tornado.")
8014(define-public python-pystache 8014(define-public python-pystache
8015 (package 8015 (package
8016 (name "python-pystache") 8016 (name "python-pystache")
8017 (version "0.6.0") 8017 (version "0.6.8")
8018 (source (origin 8018 (source (origin
8019 (method url-fetch) 8019 (method url-fetch)
8020 (uri (pypi-uri "pystache" version)) 8020 (uri (pypi-uri "pystache" version))
8021 (sha256 8021 (sha256
8022 (base32 8022 (base32
8023 "03a73ppf5vxnsk6az5ackvc0hp6xqv2f4hi1s5c4nk4s2jr95gwk")))) 8023 "0b67fmq0wmfkgcr7qqc44vvpvh8zkdk0rh87kccds9jdda7521rp"))))
8024 (build-system python-build-system) 8024 (build-system pyproject-build-system)
8025 (arguments 8025 (arguments
8026 '(#:tests? #f)) ; FIXME: Python 3 tests are failing. 8026 '(#:tests? #f)) ; FIXME: Python 3 tests are failing.
8027 (native-inputs (list python-setuptools python-wheel))
8027 (home-page "http://defunkt.io/pystache/") 8028 (home-page "http://defunkt.io/pystache/")
8028 (synopsis "Python logic-less template engine") 8029 (synopsis "Python logic-less template engine")
8029 (description 8030 (description