~ruther/guix-local

7813ffeb6937b833aacd59ab2bdf11b1fd102fc8 — Nicolas Graves 4 months ago 9afef64
gnu: python-listparser: Update to 0.20.

* gnu/packages/python-xyz.scm (python-listparser): Update to 0.20.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.

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

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +11 -10
@@ 35256,19 35256,20 @@ from web pages to make them easier to read.")
(define-public python-listparser
  (package
    (name "python-listparser")
    (version "0.18")
    (version "0.20")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "listparser" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/kurtmckee/listparser")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "0hdqs1mmayw1r8yla43hgb4d9y3zqs5483vgf8j9ygczkd2wrq2b"))))
    (build-system python-build-system)
    (home-page
     "https://github.com/kurtmckee/listparser")
    (synopsis
     "Parse subscription lists in Python")
        (base32 "0a69cm0inwqwipvnmf5plbf9rqgy1arl62gxnwc7pg7062p563vs"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-pytest python-poetry-core))
    (home-page "https://github.com/kurtmckee/listparser")
    (synopsis "Parse subscription lists in Python")
    (description
     "This package provides a Python library that can parse OPML, FOAF, and
iGoogle subscription lists.")