mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add python-asyncudp.
* gnu/packages/python-web.scm (python-asyncudp): New variable. Change-Id: I704a3d850baa3562b4f1d9d7646a09766be7f372
This commit is contained in:
parent
3a7ac72469
commit
f1f30778a8
1 changed files with 21 additions and 0 deletions
|
|
@ -87,6 +87,7 @@
|
|||
;;; Copyright © 2025 Artur Wroblewski <wrobell@riseup.net>
|
||||
;;; Copyright © 2025 Allan Adair <allan@adair.no>
|
||||
;;; Copyright © 2025 Aaron Covrig <aaron.covrig.us@ieee.org>
|
||||
;;; Copyright © 2026 Daniel Khodabakhsh <d@niel.khodabakh.sh>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
|
@ -310,6 +311,26 @@ broad range of notification services, such as Telegram, Discord, Slack, Amazon
|
|||
SNS, Gotify, etc.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public python-asyncudp
|
||||
(package
|
||||
(name "python-asyncudp")
|
||||
(version "0.11.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/eerimoq/asyncudp")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256 (base32 "1i2s8mmmggzq6vk5aldz3g85jnqfbgxfqi60wl58jpn2lbr8fqlr"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs (list
|
||||
python-pytest
|
||||
python-setuptools))
|
||||
(home-page (git-reference-url (origin-uri source)))
|
||||
(synopsis "High level UDP sockets for asyncio")
|
||||
(description "Python library offering high level UDP sockets for asyncio.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-behave-web-api
|
||||
(package
|
||||
(name "python-behave-web-api")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue