mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: Add python-u2flib-host.
* gnu/packages/finance.scm (python-u2flib-host): New variable.
This commit is contained in:
parent
8523d79ff5
commit
a0006f4680
1 changed files with 22 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015, 2016 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015, 2016, 2023 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
|
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
|
||||||
;;; Copyright © 2016, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2016, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
|
@ -1040,6 +1040,27 @@ (define-public python-mnemonic
|
||||||
of Bitcoin BIP-0039.")
|
of Bitcoin BIP-0039.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-u2flib-host
|
||||||
|
;; The package is obsolete and superseded by python-fido2, but
|
||||||
|
;; needed for python-ledgerblue@0.1.44.
|
||||||
|
(package
|
||||||
|
(name "python-u2flib-host")
|
||||||
|
(version "3.0.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "python-u2flib-host" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"02pwafd5kyjpc310ys0pgnd0adff1laz18naxxwsfrllqafqnrxb"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs (list python-hidapi python-requests))
|
||||||
|
(native-inputs (list python-cryptography))
|
||||||
|
(home-page "https://github.com/Yubico/python-u2flib-host")
|
||||||
|
(synopsis "Python based U2F host library")
|
||||||
|
(description
|
||||||
|
"The package provides library functionality for communicating with a U2F device over USB.")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public python-ledgerblue
|
(define-public python-ledgerblue
|
||||||
(package
|
(package
|
||||||
(name "python-ledgerblue")
|
(name "python-ledgerblue")
|
||||||
|
|
Loading…
Reference in a new issue