summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-09 10:03:43 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-09 10:03:59 +0100
commite37cedf8873f4f4541350f5e46c33e7aec7e6f4d (patch)
tree4a7aeb61f277dbd5f25a547ab152683843cbed0e
parentac8cbae47e1a81a9750542ecc088d403c4139a50 (diff)
gnu: python-jeepney: Update to 0.9.
* gnu/packages/python-crypto.scm (python-jeepney): Update to 0.9. [source]: Switch to git-fetch. [propagated-inputs]: Add python-trio. [native-inputs]: Remove python-async-timeout and python-trio. Relates-to: guix/guix#9155 Change-Id: I412091c968859fb04bb522fbe9fd896995f29e08
-rw-r--r--gnu/packages/python-crypto.scm24
1 files changed, 13 insertions, 11 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 943dc4afae3..8bc75aa9e9d 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1727,23 +1727,25 @@ certificates, signing and building trust bundles.")
1727(define-public python-jeepney 1727(define-public python-jeepney
1728 (package 1728 (package
1729 (name "python-jeepney") 1729 (name "python-jeepney")
1730 (version "0.8.0") 1730 (version "0.9")
1731 (source 1731 (source
1732 (origin 1732 (origin
1733 (method url-fetch) 1733 (method git-fetch)
1734 (uri (pypi-uri "jeepney" version)) 1734 (uri (git-reference
1735 (sha256 1735 (url "https://gitlab.com/takluyver/jeepney")
1736 (base32 "01jqrk7pn94i7bpmj834pjrw7id659gfag6wpbv04fcpap94izjy")))) 1736 (commit version)))
1737 (file-name (git-file-name name version))
1738 (sha256
1739 (base32 "06vxw61a6zp4pvxmpdlpn29mh6bgjl317f3k1kc29gj3zgh3zk3p"))))
1737 (build-system pyproject-build-system) 1740 (build-system pyproject-build-system)
1738 (native-inputs 1741 (native-inputs
1739 (list python-async-timeout 1742 (list python-flit-core
1740 python-testpath
1741 python-trio
1742 python-pytest 1743 python-pytest
1743 python-pytest-asyncio 1744 python-pytest-asyncio
1744 python-pytest-trio 1745 python-pytest-trio
1745 ;; For the build backend 1746 python-testpath))
1746 python-flit-core)) 1747 (propagated-inputs
1748 (list python-trio)) ;optional
1747 (home-page "https://gitlab.com/takluyver/jeepney") 1749 (home-page "https://gitlab.com/takluyver/jeepney")
1748 (synopsis "Low-level, pure Python DBus protocol wrapper") 1750 (synopsis "Low-level, pure Python DBus protocol wrapper")
1749 (description 1751 (description