gnu: python-jeepney: Update to 0.6.0.
* gnu/packages/python-crypto.scm (python-jeepney): Update to 0.6.0. [native-inputs]: Add python-trio, python-pytest-trio.master
parent
8af48c146d
commit
3bab959405
|
@ -1,6 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2015, 2016, 2017, 2019 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2015, 2016, 2017, 2019 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2016, 2017, 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2016, 2017, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au>
|
;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au>
|
||||||
|
@ -1571,18 +1571,20 @@ certificates, signing and building trust bundles.")
|
||||||
(define-public python-jeepney
|
(define-public python-jeepney
|
||||||
(package
|
(package
|
||||||
(name "python-jeepney")
|
(name "python-jeepney")
|
||||||
(version "0.4.3")
|
(version "0.6.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "jeepney" version))
|
(uri (pypi-uri "jeepney" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0vp3p1lqhqk2kd3254q5sxr50znmm2hmysc8a7g0fr1brihvhy9l"))))
|
(base32 "0mw6ch5s4czpmsiwqwhcidgk27858pl8vlvb7acrxjkm4ribcnbx"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-testpath" ,python-testpath)
|
`(("python-testpath" ,python-testpath)
|
||||||
("python-tornado" ,python-tornado)
|
("python-tornado" ,python-tornado)
|
||||||
("python-pytest" ,python-pytest)))
|
("python-trio" ,python-trio)
|
||||||
|
("python-pytest" ,python-pytest)
|
||||||
|
("python-pytest-trio" ,python-pytest-trio)))
|
||||||
(home-page "https://gitlab.com/takluyver/jeepney")
|
(home-page "https://gitlab.com/takluyver/jeepney")
|
||||||
(synopsis "Low-level, pure Python DBus protocol wrapper")
|
(synopsis "Low-level, pure Python DBus protocol wrapper")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue