~ruther/guix-local

19c2933c81b0093c3a9da421dc244e213bc952f8 — Sharlatan Hellseher 4 months ago f0a484c
gnu: python-txsni: Move to python-web.

* gnu/packages/python-xyz.scm (python-txsni): Move from here ...
* gnu/packages/python-web.scm: ... to here.

Change-Id: Iec202f8ddc7d0f36d383aa679e35847b8f4082dd
2 files changed, 32 insertions(+), 32 deletions(-)

M gnu/packages/python-web.scm
M gnu/packages/python-xyz.scm
M gnu/packages/python-web.scm => gnu/packages/python-web.scm +32 -0
@@ 3845,6 3845,38 @@ high-speed transfers via libcurl and frequently outperforms alternatives.")
    ;; under the terms of LGPLv2.1+ or Expat.
    (license (list license:lgpl2.1+ license:expat))))

(define-public python-txsni
  (package
    (name "python-txsni")
    (version "0.2.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/glyph/txsni")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1fl8xi7vl24hwbva5v41l6nsrbkj2l2mlsgcvdjxgph61aznwywq"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:test-backend #~'custom
           #:test-flags #~(list "-m" "twisted.trial"
                                "--temp-directory=/tmp/_trial_temp"
                                "txsni")))
    (native-inputs
     (list python-setuptools))
    (propagated-inputs
     (list python-pyopenssl
           python-service-identity
           python-twisted))
    (home-page "https://github.com/glyph/txsni")
    (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)))

(define-public python-url-normalize
  (package
    (name "python-url-normalize")

M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +0 -32
@@ 31997,38 31997,6 @@ happened, and what caused it.")
     "This package provides a Python module for parsing and splitting PEM files.")
    (license license:expat)))

(define-public python-txsni
  (package
    (name "python-txsni")
    (version "0.2.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/glyph/txsni")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1fl8xi7vl24hwbva5v41l6nsrbkj2l2mlsgcvdjxgph61aznwywq"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:test-backend #~'custom
           #:test-flags #~(list "-m" "twisted.trial"
                                "--temp-directory=/tmp/_trial_temp"
                                "txsni")))
    (native-inputs
     (list python-setuptools))
    (propagated-inputs
     (list python-pyopenssl
           python-service-identity
           python-twisted))
    (home-page "https://github.com/glyph/txsni")
    (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)))

(define-public python-txacme
  ;; 0.9.3 tag was placed in 2020 and there a lot of changes providing
  ;; compatibility wit twisted, use the latest commit from trunk branch.