~ruther/guix-local

b746b971fb9c8f9006f6120f09964ca5f24f9a68 — Nicolas Graves 6 months ago 29ae8fd
gnu: python-boltons: Update to 25.0.0.

* gnu/packages/python-xyz.scm (python-boltons): Update to 25.0.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-flit-core, python-pytest, python-setuptools.

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

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +9 -6
@@ 30564,15 30564,18 @@ library.")
(define-public python-boltons
  (package
    (name "python-boltons")
    (version "23.0.0")
    (version "25.0.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "boltons" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/mahmoud/boltons")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "1c5lpqi74i55li0wvpyxnircj40na797x7447k53an2j54cafl4c"))))
    (build-system python-build-system)
        (base32 "0j061hd1iwcyz1rvasprjwwgb39x6h36n1l3dw310ig3pzbr84wh"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-flit-core python-pytest python-setuptools))
    (home-page "https://github.com/mahmoud/boltons")
    (synopsis "Extensions to the Python standard library")
    (description