3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add python-dpkt.

* gnu/packages/python-web.scm (python-dpkt): New variable.
This commit is contained in:
Maxim Cournoyer 2020-12-19 00:08:59 -05:00
parent 66cb42106d
commit f8b6d18171
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -3016,6 +3016,24 @@ library.")
@code{Requests} with @code{Gevent} to make asynchronous HTTP Requests easily")
(license license:bsd-2)))
(define-public python-dpkt
(package
(name "python-dpkt")
(version "1.9.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "dpkt" version))
(sha256
(base32
"1d28r8pmhzjjd6hrn1xcddinfhwv8lcl1s59ygmqa8kfmz5pkrgl"))))
(build-system python-build-system)
(home-page "https://github.com/kbandla/dpkt")
(synopsis "Packet generator and parser for TCP/IP protocols")
(description "The dpkt module is a fast, simple packet generator and parser
for the basic TCP/IP protocols.")
(license license:bsd-3)))
(define-public python-geventhttpclient
(package
(name "python-geventhttpclient")