guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

26/30: gnu: Add python-txsni.


From: guix-commits
Subject: 26/30: gnu: Add python-txsni.
Date: Thu, 2 Apr 2020 14:55:51 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 87ba9efc6d4fed9abe282ae44c111bd99512bd50
Author: Marius Bakke <address@hidden>
AuthorDate: Thu Apr 2 20:20:43 2020 +0200

    gnu: Add python-txsni.
    
    * gnu/packages/python-xyz.scm: (python-txsni) New variable.
    
    Co-authored-by: Alex ter Weele <address@hidden>
---
 gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 901b241..5243055 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19043,3 +19043,31 @@ happened, and what caused it.")
     (description
      "This package provides a Python module for parsing and splitting PEM 
files.")
     (license license:expat)))
+
+(define-public python-txsni
+  ;; We need a few commits on top of 0.1.9 for compatibility with newer
+  ;; Python and OpenSSL.
+  (let ((commit "5014c141a7acef63e20fcf6c36fa07f0cd754ce1")
+        (revision "0"))
+    (package
+      (name "python-txsni")
+      (version (git-version "0.1.9" revision commit))
+      (home-page "https://github.com/glyph/txsni";)
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference (url home-page) (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0imfxx4yjj1lbq0n5ad45al3wvv4qv96sivnc1r51i66mxi658z8"))))
+      (build-system python-build-system)
+      (propagated-inputs
+       `(("python-pyopenssl" ,python-pyopenssl)
+         ("python-service-identity" ,python-service-identity)
+         ("python-twisted" ,python-twisted)))
+      (synopsis "Run TLS servers with Twisted")
+      (description
+       "This package provides an easy-to-use SNI endpoint for use
+with the Twisted web framework.")
+      (license license:expat))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]