sharlatan pushed a commit to branch python-team
in repository guix.

commit 44e3edeafa74e6de26b39cb2f201e7cd7d46a559
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 17 20:10:51 2024 +0000

    gnu: python-blinker: Update to 1.9.0.
    
    * gnu/packages/python-xyz.scm (python-blinker): Update to 1.9.0.
    [build-system]: Swapt to pyproject-build-system.
    [native-inputs]: Add python-flit-core, python-pytest, and
    python-pytest-asyncio.
    
    Change-Id: I0fe81403b9cd08ad9eabe11926f2817304a36ec5
---
 gnu/packages/python-xyz.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6da680bdf4..7c331ac528 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8635,15 +8635,19 @@ enable formatting of partial files.")
 (define-public python-blinker
   (package
     (name "python-blinker")
-    (version "1.4")
+    (version "1.9.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "blinker" version))
        (sha256
         (base32
-         "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7"))))
-    (build-system python-build-system)
+         "1gs5aigi8v8k4cymm06gdgaylv5yps6yk5n8gigf9v5blxjj5kml"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-flit-core
+           python-pytest
+           python-pytest-asyncio))
     (home-page "https://pythonhosted.org/blinker/";)
     (synopsis "Fast, simple object-to-object and broadcast signaling")
     (description

Reply via email to