~ruther/guix-local

2817daf5187b41739cc2aafa452e48ac18a92e8a — Nicolas Graves 4 months ago 12a10c2
gnu: python-markuppy: Update to 1.18.

* gnu/packages/python-xyz.scm (python-markuppy): Update to 1.18.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.
[description]: Improve style.

Change-Id: I8589af84425896b3f55a907df7f6fac493aefe60
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 12 insertions(+), 8 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +12 -8
@@ 33407,19 33407,23 @@ Gateway.  Braintree is a US-based payments service provider.")
(define-public python-markuppy
  (package
    (name "python-markuppy")
    (version "1.14")
    (version "1.18")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "MarkupPy" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/tylerbakke/MarkupPy")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0pqdmpxbr8iq22b4css2gz5z6s01ddpzyj25x27kgbs2lp0f5phs"))))
    (build-system python-build-system)
        (base32 "0rbxh7dzrqd1xrxbxxbyjslqfaxxyv17ppr9zcjig8yw631k0a51"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-pytest python-setuptools))
    (home-page "https://github.com/tylerbakke/MarkupPy")
    (synopsis "Pythonic HTML/XML generator")
    (description "This Python module attempts to make it easier to generate
HTML/XML from a Python program in an intuitive, lightweight, customizable and
pythonic way.")
    (description
     "This Python module attempts to make it easier to generate HTML/XML from
a Python program in an customizable and pythonic way.")
    (license license:expat)))

(define-public python-csb43