diff options
author | Christopher Lemmer Webber <cwebber@dustycloud.org> | 2020-04-28 15:22:40 -0400 |
---|---|---|
committer | Guix Patches Tester <> | 2020-04-28 20:53:13 +0100 |
commit | d103407d8dbd2b477245df10eb98e17ccf75059b (patch) | |
tree | cac8f9aa0982ae27f5b9059e70de91dd3a06f4f2 | |
parent | 6536b45e432a22a5b22e95eddb06cd5d122ade5f (diff) | |
download | patches-d103407d8dbd2b477245df10eb98e17ccf75059b.tar patches-d103407d8dbd2b477245df10eb98e17ccf75059b.tar.gz |
gnu: Add python-cheroot.
* gnu/packages/python-xyz.scm (python-cheroot): New variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 153463f7bd..60839d646c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19801,3 +19801,56 @@ and watchdog.") (description "Provides fake a fake TLS certificate authority for Python unit tests.") (license #f))) + +(define-public python-cheroot + (package + (name "python-cheroot") + (version "8.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "cheroot" version)) + (sha256 + (base32 + "0cc9cb5via001zkna0i2qp5s0bn1w327q6k7fba2f5v650gpwmx0")))) + (build-system python-build-system) + (propagated-inputs + `(("python-jaraco-functools" ,python-jaraco-functools) + ("python-more-itertools" ,python-more-itertools) + ("python-six" ,python-six))) + (arguments + ;; needs a newer pytest :\ + `(#:tests? #f + ;; So we're also kicking out the dependency giving us + ;; trouble... + #:phases + (modify-phases %standard-phases + ;; Not importing the googleapis package for now + (add-after 'unpack 'ignore-googleapis + (lambda _ + (substitute* "setup.py" + (("'python-pytest-testmon',") "")) + #t))))) + (native-inputs + `(("python-codecov" ,python-codecov) + ("python-colorama" ,python-colorama) + ("python-coverage" ,python-coverage) + ("python-jaraco-text" ,python-jaraco-text) + ("python-pyopenssl" ,python-pyopenssl) + ("python-pytest" ,python-pytest) + ("python-pytest-cov" ,python-pytest-cov) + ("python-pytest-mock" ,python-pytest-mock) + ("python-pytest-sugar" ,python-pytest-sugar) + ("python-pytest-watch" ,python-pytest-watch) + ("python-pytest-xdist" ,python-pytest-xdist) + ("python-requests-unixsocket" + ,python-requests-unixsocket) + ("python-trustme" ,python-trustme) + ("python-urllib3" ,python-urllib3) + ("python-setuptools-scm-git-archive" ,python-setuptools-scm-git-archive))) + (home-page "https://cheroot.cherrypy.org") + (synopsis + "Pure-python HTTP server with an emphasis on performance") + (description + "Cheroot is the pure-Python HTTP server used by CherryPy.") + (license #f))) |