mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add python-noiseprotocol.
* gnu/packages/python-web.scm (python-noiseprotocol): New variable. Change-Id: Id62f22f9fd3f019beded5ce5c0fe9123c34f8bb2 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
060708ef6c
commit
fd579def37
1 changed files with 19 additions and 0 deletions
|
@ -63,6 +63,7 @@
|
|||
;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
|
||||
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2024 normally_js <normally_js@posteo.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -3422,6 +3423,24 @@ (define-public python-ndg-httpsclient
|
|||
(home-page "https://github.com/cedadev/ndg_httpsclient/")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-noiseprotocol
|
||||
(package
|
||||
(name "python-noiseprotocol")
|
||||
(version "0.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "noiseprotocol" version))
|
||||
(sha256
|
||||
(base32 "0ifnj0mpbqsfqba9n12vf5yzxj4qf2gxql3ry43qyshgnrqsi4mh"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs (list python-cryptography))
|
||||
(home-page "https://github.com/plizonczyk/noiseprotocol")
|
||||
(synopsis "Implementation of Noise Protocol Framework")
|
||||
(description
|
||||
"This package provides an implementation of Noise Protocol Framework.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-websocket-client
|
||||
(package
|
||||
(name "python-websocket-client")
|
||||
|
|
Loading…
Reference in a new issue