aboutsummaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorng0 <ng0@we.make.ritual.n0.is>2016-10-10 12:28:44 +0000
committerAlex Kost <alezost@gmail.com>2016-10-11 12:02:21 +0300
commit75fa19125fb2f79541fb22347fcb2a7545317cc1 (patch)
treeba627616c34ff64b6c494ef2986786a52ac60b2a /.dir-locals.el
parentbde70caa0624bc2ca2de7a183b00e9c455ddd803 (diff)
downloadguix-75fa19125fb2f79541fb22347fcb2a7545317cc1.tar.gz
guix-75fa19125fb2f79541fb22347fcb2a7545317cc1.zip
Update e-mail address for ng0.
* .mailmap: Update entries for ng0.
Diffstat (limited to '.dir-locals.el')
0 files changed, 0 insertions, 0 deletions
t; ;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl> ;;; Copyright © 2022 msimonin <matthieu.simonin@inria.fr> ;;; Copyright © 2022 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2022 Baptiste Strazzulla <bstrazzull@hotmail.fr> ;;; Copyright © 2023 dan <i@dan.games> ;;; Copyright © 2023 John Kehayias <john.kehayias@protonmail.com> ;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net> ;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com> ;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2024 normally_js <normally_js@posteo.net> ;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi> ;;; Copyright © 2024 Wojtek Kosior <koszko@koszko.org> ;;; Additions and modifications by Wojtek Kosior are additionally ;;; dual-licensed under the Creative Commons Zero v1.0. ;;; Copyright © 2024 Nguyễn Gia Phong <mcsinyx@disroot.org> ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages python-web) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system cargo) #:use-module (guix build-system copy) #:use-module (guix build-system pyproject) #:use-module (guix build-system python) #:use-module (guix download) #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix packages) #:use-module (guix utils) #:use-module (gnu packages admin) #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages certs) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages crates-io) #:use-module (gnu packages crates-web) #:use-module (gnu packages curl) #:use-module (gnu packages databases) #:use-module (gnu packages django) #:use-module (gnu packages freedesktop) #:use-module (gnu packages glib) #:use-module (gnu packages gnupg) #:use-module (gnu packages graphviz) #:use-module (gnu packages groff) #:use-module (gnu packages imagemagick) #:use-module (gnu packages libevent) #:use-module (gnu packages libffi) #:use-module (gnu packages linux) #:use-module (gnu packages node) #:use-module (gnu packages openstack) #:use-module (gnu packages pcre) #:use-module (gnu packages photo) #:use-module (gnu packages pkg-config) #:use-module (gnu packages protobuf) #:use-module (gnu packages python) #:use-module (gnu packages python-build) #:use-module (gnu packages python-check) #:use-module (gnu packages python-compression) #:use-module (gnu packages python-crypto) #:use-module (gnu packages python-science) #:use-module (gnu packages python-xyz) #:use-module (gnu packages qt) #:use-module (gnu packages rdf) #:use-module (gnu packages rpc) #:use-module (gnu packages rust-apps) #:use-module (gnu packages serialization) #:use-module (gnu packages sphinx) #:use-module (gnu packages texinfo) #:use-module (gnu packages time) #:use-module (gnu packages tls) #:use-module (gnu packages version-control) #:use-module (gnu packages web) #:use-module (gnu packages xml) #:use-module (gnu packages) #:use-module (srfi srfi-1)) (define-public python-huggingface-hub (package (name "python-huggingface-hub") (version "0.20.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/huggingface/huggingface_hub") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "00indl9labvqvm4m0y5jbzl68cgj8i60a6qy498gpnjj2pqk4l6v")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; We don't have sentence_transformers... '(list "--ignore=contrib/sentence_transformers/test_sentence_transformers.py" ;; ...nor do we have InquirerPy... "--ignore=tests/test_command_delete_cache.py" ;; ...or timm... "--ignore=contrib/timm/test_timm.py" ;; ...or spacy_huggingface_hub "--ignore=contrib/spacy/test_spacy.py" ;; These all require internet access "--ignore=tests/test_cache_no_symlinks.py" "--ignore=tests/test_cache_layout.py" "--ignore=tests/test_commit_scheduler.py" "--ignore=tests/test_file_download.py" "--ignore=tests/test_hf_api.py" "--ignore=tests/test_hf_file_system.py" "--ignore=tests/test_inference_api.py" "--ignore=tests/test_inference_async_client.py" "--ignore=tests/test_inference_client.py" "--ignore=tests/test_login_utils.py" "--ignore=tests/test_offline_utils.py" "--ignore=tests/test_repocard.py" "--ignore=tests/test_repository.py" "--ignore=tests/test_snapshot_download.py" "--ignore=tests/test_utils_cache.py" "--ignore=tests/test_utils_git_credentials.py" "--ignore=tests/test_utils_http.py" "--ignore=tests/test_utils_pagination.py" "--ignore=tests/test_webhooks_server.py") #:phases '(modify-phases %standard-phases (add-before 'check 'pre-check ;; Some tests need to write to HOME. (lambda _ (setenv "HOME" "/tmp")))))) (propagated-inputs (list python-filelock python-fsspec python-packaging python-pyyaml python-requests python-tqdm python-typing-extensions)) (native-inputs (list python-aiohttp python-fastapi python-jedi python-jinja2 python-mypy python-numpy python-pillow python-pydantic python-pytest python-pytest-asyncio python-pytest-cov python-pytest-env python-pytest-rerunfailures python-pytest-vcr python-pytest-xdist python-types-requests python-types-toml python-types-urllib3 python-typing-extensions python-urllib3)) (home-page "https://github.com/huggingface/huggingface_hub") (synopsis "Client library for accessing the huggingface.co hub") (description "This package provides a client library to download and publish models, datasets and other repos on the @url{huggingface.co} hub.") (license license:asl2.0))) (define-public python-lazr-restfulclient (package (name "python-lazr-restfulclient") (version "0.14.4") (source (origin (method url-fetch) (uri (pypi-uri "lazr.restfulclient" version)) (sha256 (base32 "11yhlqmdf2cqbdfzn8gdmzvmcivh4fflr18zf412sflvfjrdc3xz")))) (build-system python-build-system) ;; Disable the test suite to avoid the lazr.authentication requirement, ;; which requires the ancient 'oauth', a Python 2 only library. (arguments (list #:tests? #f)) (propagated-inputs (list python-distro python-httplib2 python-oauthlib python-pyparsing python-six python-wadllib)) (home-page "https://launchpad.net/lazr.restfulclient") (synopsis "Web client Python library extending wadlib") (description "This package provides a programmable client library that adds functionality on top of @code{wadlib}.") (license license:lgpl3+))) (define-public python-launchpadlib (package (name "python-launchpadlib") (version "1.10.16") (source (origin (method url-fetch) (uri (pypi-uri "launchpadlib" version)) (sha256 (base32 "106aixwchwyb100wlf4cnj1vgsi2d7x40ps8xv8az27r6qwv3x0d")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-before 'check 'set-home (lambda _ ;; Tests require a writable home. (setenv "HOME" "/tmp")))))) (propagated-inputs (list python-httplib2 python-keyring python-lazr-restfulclient python-lazr-uri)) (native-inputs (list python-mock python-testresources python-wadllib)) (home-page "https://help.launchpad.net/API/launchpadlib") (synopsis "Python client library for Launchpad's web service") (description "@code{launchpadlib} is a Python library that allows scripting Launchpad via its the web service API.") (license license:lgpl3+))) (define-public python-lazr-uri (package (name "python-lazr-uri") (version "1.0.6") (source (origin (method url-fetch) (uri (pypi-uri "lazr.uri" version)) (sha256 (base32 "0r44rw0bj5mayhqwfwj1dnrjgzj1lrh7ishiddd1vygnrczqa9jh")))) (build-system python-build-system) (native-inputs (list python-zope-testrunner)) (home-page "https://launchpad.net/lazr.uri") (synopsis "Python URI manipulation library") (description "This Python package provides a self-contained, easily reusable library for parsing, manipulating, and generating URIs.") (license license:lgpl3))) (define-public python-portend (package (name "python-portend") (version "3.2.0") (source (origin (method url-fetch) (uri (pypi-uri "portend" version)) (sha256 (base32 "0wpvixicc3d0lack65554mvdrrckkn18p1xcgiv9v5cwq59a6l2j")))) (build-system pyproject-build-system) ;; Do not test pyproject.toml with python-pytest-checkdocs as it tries to ;; download dependencies. (arguments '(#:test-flags '("-k" "not project"))) (propagated-inputs (list python-tempora)) ;; TODO: Add python-pytest-ruff to native-inputs once it has been packaged. (native-inputs (list python-pytest python-pytest-black python-pytest-checkdocs python-pytest-cov python-pytest-enabler python-pytest-mypy)) (home-page "https://github.com/jaraco/portend") (synopsis "Monitor TCP ports for bound or unbound states") (description "@code{python-portend} can be used to monitor TCP ports for bound or unbound states. For example, waiting for a port to be occupied or freed within a set timeout. @code{python-portend} can also be used directly from the command line.") (license license:expat))) (define-public python-prawcore (package (name "python-prawcore") (version "2.3.0") (source (origin (method url-fetch) (uri (pypi-uri "prawcore" version)) (sha256 (base32 "0vgmhjddqxnz5vy70dyqvakak51fg1nk6j3xavkc83d8nzacrwfs")))) (build-system python-build-system) (native-inputs (list python-betamax python-betamax-matchers python-betamax-serializers python-mock python-pytest python-testfixtures)) (propagated-inputs (list python-requests)) (synopsis "Core component of PRAW") (description "PRAWcore is a low-level communication layer used by PRAW.") (home-page "https://praw.readthedocs.io/en/latest/") (license license:bsd-2))) (define-public python-praw (package (name "python-praw") (version "7.6.1") (source (origin (method url-fetch) (uri (pypi-uri "praw" version)) (sha256 (base32 "17pvdlcasr08p5hb1x7shjh8yvn621lzm0bvnwd3b1r1qpzrbz07")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'disable-failing-tests (lambda _ (with-directory-excursion "tests" ;; Integration tests depend on files that are not included. (for-each delete-file-recursively '("integration/models" "unit/models")) ;; The configuration file does not seem to exist. (delete-file "unit/test_config.py")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-k" ;; These tests depend on test files that don't exist. (string-append "not test_bad_request_without_json_text_plain_response" " and not test_bad_request_without_json_text_html_response")))))))) (native-inputs (list python-betamax python-betamax-matchers python-pytest)) (propagated-inputs (list python-prawcore python-update-checker python-websocket-client)) (synopsis "Python Reddit API Wrapper") (description "PRAW is a Python package that allows for simple access to Reddit’s API. It aims to be easy to use and internally follows all of Reddit’s API rules.") (home-page "https://praw.readthedocs.io/en/latest/") (license license:bsd-2))) (define-public python-frozenlist (package (name "python-frozenlist") (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "frozenlist" version)) (sha256 (base32 "1pkr23by7pk9lsmsh0wiqirpkq3f1f08b0615nbzysn51bk1n838")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "tests"))))))) (native-inputs (list python-pytest)) (home-page "https://github.com/aio-libs/frozenlist") (synopsis "List-like data structure for Python") (description "@code{frozenlist.FrozenList} is a list-like structure which implements @code{collections.abc.MutableSequence}. It can be made immutable by calling @code{FrozenList.freeze}.") (license license:asl2.0))) (define-public python-aiosignal (package (name "python-aiosignal") (version "1.3.1") (source (origin (method url-fetch) (uri (pypi-uri "aiosignal" version)) (sha256 (base32 "1z4cnqww6j0xl6f3vx2r6kfv1hdny1pnlll7difvfj8nbvhrdkal")))) (build-system pyproject-build-system) (arguments (list #:test-flags #~(list "tests"))) (propagated-inputs (list python-frozenlist)) (native-inputs (list python-pytest python-pytest-asyncio python-pytest-cov)) (home-page "https://github.com/aio-libs/aiosignal") (synopsis "Callback manager for Python @code{asyncio} projects") (description "This Python module provides @code{Signal}, an abstraction to register asynchronous callbacks. The @code{Signal} abstraction can be used for adding, removing and dropping callbacks.") (license license:asl2.0))) (define-public python-aiohttp (package (name "python-aiohttp") (version "3.8.4") (source (origin (method url-fetch) (uri (pypi-uri "aiohttp" version)) (sha256 (base32 "0p5bj6g7ca19gvwk8fz00k579ma9w9kd27ssh2zl3r61ca8ilbmz")) (snippet #~(begin (use-modules ((guix build utils))) ;; TODO: Unbundle the llhttp sources. ;; (delete-file-recursively "vendor") (delete-file "aiohttp/_helpers.c") (delete-file "aiohttp/_http_parser.c") (delete-file "aiohttp/_http_writer.c") (delete-file "aiohttp/_websocket.c"))))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'fix-tests (lambda _ ;; Disable brotli tests, because we’re not providing that ;; optional library. (substitute* "tests/test_http_parser.py" ((" async def test_feed_eof_no_err_brotli") " @pytest.mark.xfail\n async def test_feed_eof_no_err_brotli")) ;; Make sure the timestamp of this file is > 1990, because a few ;; tests like test_static_file_if_modified_since_past_date depend ;; on it. (let ((late-90s (* 60 60 24 365 30))) (utime "tests/data.unknown_mime_type" late-90s late-90s)) ;; Disable test that attempts to access httpbin.org. (substitute* "tests/test_formdata.py" (("async def test_mark_formdata_as_processed.*" all) (string-append "@pytest.mark.xfail\n" all))) ;; Don't test the aiohttp pytest plugin to avoid a dependency loop. (delete-file "tests/test_pytest_plugin.py"))) (add-before 'build 'cythonize (lambda _ ;; Adapted from the Makefile. (with-directory-excursion "aiohttp" (for-each (lambda (file) (invoke "cython" "-3" file "-I" ".")) (find-files "." "_.*\\.pyx$"))))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (let ((skipped-tests (string-append ;; This test probably requires to be run with the ;; library loaded from the the build directory. "not test_c_parser_loaded and " ;; TODO: These tests fail with recent versions of Pytest ;; and the fix is difficult to backport: ;; https://github.com/aio-libs/aiohttp/pull/6872 ;; Re-enable after 3.9. "not test_session_close_awaitable and " "not test_async_with_session and " "not test_close_run_until_complete_not_deprecated and " ;; Disable the following tests as they require ;; networking. "not TestDeflateBuffer and " "not test_client_session_timeout_zero and " "not test_empty_body and " "not test_mark_formdata_as_processed[pyloop] and " "not test_receive_runtime_err[pyloop] " ;; These tests fail for unknown reasons (see: ;; https://github.com/aio-libs/aiohttp/issues/7130) "and not test_no_warnings " "and not test_default_loop " "and not test_ctor_global_loop " "and not test_set_loop_default_loop "))) (when tests? ;; This tests requires the 'proxy.py' module, not yet ;; packaged. (delete-file "tests/test_proxy_functional.py") ;; Sometimes tests fail when run in parallel. (invoke "pytest" "-vv" "-o" "addopts=''" "--ignore=aiohttp" ;; These tests cause errors (see: ;; https://github.com/aio-libs/aiohttp/issues/7130). "--ignore" "tests/test_web_sendfile_functional.py" "--ignore" "tests/test_web_urldispatcher.py" "-k" skipped-tests)))))))) (propagated-inputs (list python-aiodns python-aiosignal python-attrs python-asynctest python-async-timeout python-charset-normalizer python-frozenlist python-idna-ssl python-multidict python-yarl)) (native-inputs (list gunicorn-bootstrap python-async-generator python-cython python-freezegun python-pytest python-pytest-mock python-pytest-xdist python-re-assert)) (home-page "https://github.com/aio-libs/aiohttp/") (synopsis "Async HTTP client/server framework (asyncio)") (description "@code{aiohttp} is an asynchronous HTTP client/server framework. Its main features are: @itemize @item Supports both client and server side of HTTP protocol. @item Supports both client and server Web-Sockets out-of-the-box without the Callback Hell. @item Web-server has middlewares and pluggable routing. @end itemize") (license license:asl2.0))) (define-public python-aiohttp-socks (package (name "python-aiohttp-socks") (version "0.7.1") (source (origin (method url-fetch) (uri (pypi-uri "aiohttp_socks" version)) (sha256 (base32 "06il43dv6qm858af841vq9qadw6h7qsfs06nnwagmwqyi72cl592")))) (build-system python-build-system) (propagated-inputs (list python-aiohttp python-attrs python-socks)) (home-page "https://github.com/romis2012/aiohttp-socks") (synopsis "SOCKS proxy connector for aiohttp") (description "This package provides a SOCKS proxy connector for aiohttp. It supports SOCKS4(a) and SOCKS5.") (license license:asl2.0))) (define-public python-aiodns (package (name "python-aiodns") (version "3.0.0") (source (origin (method url-fetch) (uri (pypi-uri "aiodns" version)) (sha256 (base32 "1mlcw14hxyzd2yg89gj1l84gfi8nbl7h32iw17myxz23wymxyswl")))) (build-system python-build-system) (propagated-inputs (list python-pycares)) (arguments `(#:tests? #f)) ;tests require internet access (home-page "https://github.com/saghul/aiodns") (synopsis "Simple DNS resolver for asyncio") (description "@code{aiodns} provides a simple way for doing asynchronous DNS resolutions with a synchronous looking interface by using @url{https://github.com/saghul/pycares,pycares}.") (license license:expat))) (define-public python-aioquic (package (name "python-aioquic") (version "0.9.21") (source (origin (method url-fetch) (uri (pypi-uri "aioquic" version)) (sha256 (base32 "1xbfa4gmlmyj6bihdl5p4mr7nd6z79rfi92wcqkmcy4f643frivr")))) (build-system pyproject-build-system) (native-inputs (list python-pytest)) (inputs (list openssl)) (propagated-inputs (list python-certifi python-pylsqpack python-pyopenssl)) (home-page "https://github.com/aiortc/aioquic") (synopsis "QUIC and HTTP3 implementation in Python") (description "@code{aioquic} is a library for the QUIC network protocol in Python. It features a minimal TLS 1.3 implementation, a QUIC stack and an HTTP/3 stack.") (license license:bsd-3))) (define-public python-aiorpcx (package (name "python-aiorpcx") (version "0.22.1") (source (origin (method url-fetch) (uri (pypi-uri "aiorpcX" version)) (sha256 (base32 "0lx54bcinp44fmr8q4bbffsqbkg8kdcwykf9i5jj0bj3sfzgf9k0")))) (build-system python-build-system) (propagated-inputs (list python-attrs)) (home-page "https://github.com/kyuupichan/aiorpcX") (synopsis "Generic asyncio RPC implementation") (description "The aiorpcX library is a generic asyncio implementation of RPC suitable for an application that is a client, server or both. The package includes a module with full coverage of JSON RPC versions 1.0 and 2.0, JSON RPC protocol auto-detection, and arbitrary message framing. It also comes with a SOCKS proxy client.") (license (list license:expat license:bsd-2)))) (define-public python-aiorpcx-0.18 (package (inherit python-aiorpcx) (version "0.18.7") (source (origin (method url-fetch) (uri (pypi-uri "aiorpcX" version)) (sha256 (base32 "1rswrspv27x33xa5bnhrkjqzhv0sknv5kd7pl1vidw9d2z4rx2l0")))))) (define-public python-aiostream (package (name "python-aiostream") (version "0.4.5") (source (origin ;; Tests not included in pypi release. (method git-fetch) (uri (git-reference (url "https://github.com/vxgmichel/aiostream") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0l2ijb7yk0820wiyf6zrzx8fhzf8925an7r06mcaw3in1mr6rssq")))) (build-system python-build-system) (native-inputs (list python-pytest python-pytest-asyncio python-pytest-cov python-pytest-runner)) (home-page "https://github.com/vxgmichel/aiostream") (synopsis "Generator-based operators for asynchronous iteration") (description "@code{aiostream} provides a collection of stream operators that can be combined to create asynchronous pipelines of operations. It can be seen as an asynchronous version of @code{itertools}, although some aspects are slightly different. All the provided operators return a unified interface called a stream. A stream is an enhanced asynchronous iterable.") (license license:gpl3))) (define-public python-asgiref (package (name "python-asgiref") (version "3.7.2") (source (origin (method url-fetch) (uri (pypi-uri "asgiref" version)) (sha256 (base32 "1vdgj8mikd2j6ijlhf7b4n2nxkvq72r1c0hj8mdvl6d8jfmf634y")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv"))))))) (native-inputs (list python-mypy python-pytest python-pytest-asyncio)) (propagated-inputs (list python-typing-extensions)) (home-page "https://github.com/django/asgiref/") (synopsis "ASGI specs, helper code, and adapters") (description "ASGI is a standard for Python asynchronous web apps and servers to communicate with each other, and positioned as an asynchronous successor to WSGI. This package includes libraries for implementing ASGI servers.") (license license:bsd-3))) (define-public python-asgi-csrf (package (name "python-asgi-csrf") (version "0.9") (source (origin (method git-fetch) ;for tests (uri (git-reference (url "https://github.com/simonw/asgi-csrf") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1j134mjh0ff61rvkm3q67m463j1bhyxc9dwsdany3scnd4vsqqws")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; Provide a null config to avoid the extraneous dependency on ;; python-pytest-coverage. #~(list "-c" "/dev/null" ;; Disable two failing tests (see: ;; https://github.com/simonw/asgi-csrf/issues/24). "-k" (string-append "not (test_multipart " "or test_multipart_failure_wrong_token)")))) (propagated-inputs (list python-itsdangerous python-multipart)) (native-inputs (list python-asgi-lifespan python-httpx python-pytest python-pytest-asyncio python-starlette)) (home-page "https://github.com/simonw/asgi-csrf") (synopsis "ASGI middleware for protecting against CSRF attacks") (description "This Asynchronous Server Gateway Interface (ASGI) middleware protects against Cross-site request forgery (CSRF) attacks. It implements the Double Submit Cookie pattern, where a cookie is set that is then compared to a @code{csrftoken} hidden form field or a @code{x-csrftoken} HTTP header.") (license license:asl2.0))) (define-public python-asgi-lifespan (package (name "python-asgi-lifespan") (version "1.0.1") (source (origin (method git-fetch) ;for tests (uri (git-reference (url "https://github.com/florimondmanca/asgi-lifespan") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "10a5ci9ddr8wnjf3wai7xifbbplirhyrgvw4p28q0ha63cvhb2j2")))) (build-system pyproject-build-system) (arguments (list #:test-flags '(list "-c" "/dev/null" ;ignore coverage-related options "-k" (string-append ;; XXX: Some tests fail because of a 'lifespan.shutdown.failed' ;; extra event, perhaps because our version of trio is older. "not (test_lifespan_manager[asyncio-None-ValueError-None]" " or test_lifespan_manager[asyncio-ValueError-None-None]" " or test_lifespan_manager[asyncio-ValueError-ValueError-None]" " or test_lifespan_manager[trio-None-ValueError-None]" " or test_lifespan_manager[trio-ValueError-None-None]" " or test_lifespan_manager[trio-ValueError-ValueError-None])")))) (native-inputs (list python-pytest python-pytest-asyncio python-pytest-trio python-starlette)) (propagated-inputs (list python-sniffio)) (home-page "https://github.com/florimondmanca/asgi-lifespan") (synopsis "Programmatic startup/shutdown of ASGI apps") (description "Programmatically send startup/shutdown lifespan events into Asynchronous Server Gateway Interface (ASGI) applications. When used in combination with an ASGI-capable HTTP client such as HTTPX, this allows mocking or testing ASGI applications without having to spin up an ASGI server.") (license license:expat))) (define-public python-a2wsgi (package (name "python-a2wsgi") (version "1.7.0") (source (origin (method url-fetch) (uri (pypi-uri "a2wsgi" version)) (sha256 (base32 "1cmsbgfg0vp8pwqz8nmkbmdi0axis1yl34qb280h5ssh08ngc1m9")))) (build-system pyproject-build-system) (arguments (list #:build-backend "pdm.backend" ;; Tests have a circular dependency on uvicorn. #:tests? #f)) (native-inputs (list python-pdm-backend)) (home-page "https://github.com/abersheeran/a2wsgi") (synopsis "Convert WSGI to ASGI or vice versa") (description "This program converts a WSGI program to an ASGI program or the other way around. It depends only on the Python standard library.") (license license:asl2.0))) (define-public python-httpauth (package (name "python-httpauth") (version "0.4.1") (source (origin (method url-fetch) (uri (pypi-uri "httpauth" version)) (sha256 (base32 "1m6rwvivg61l3h34hf6p6gkqmr69sb1c4k5ha379nxq0p8bfgahb")))) (build-system pyproject-build-system) (native-inputs (list python-pytest)) (home-page "https://github.com/jonashaag/httpauth") (synopsis "WSGI HTTP Digest Authentication middleware") (description "@code{python-httpauth} is WSGI middleware that secures some/all routes using HTTP Digest Authentication.") (license license:bsd-2))) (define-public python-css-html-js-minify (package (name "python-css-html-js-minify") (version "2.5.5") (source (origin (method url-fetch) (uri (pypi-uri "css-html-js-minify" version ".zip")) (sha256 (base32 "0v3l2dqdk2y4r6ax259gs4ij1zzm9yxg6491s6254vs9w3vi37sa")))) (build-system python-build-system) ;; XXX: The git repository has no tags, and the PyPI releases do not ;; contain tests. (arguments '(#:tests? #f)) (native-inputs (list unzip)) (home-page "https://github.com/juancarlospaco/css-html-js-minify") (synopsis "CSS/HTML/JS minifier") (description "This package provides a single-file minifier for CSS, HTML, and JavaScript.") ;; XXX: The README just says "GNU GPL and GNU LGPL and MIT". From ;; <https://github.com/juancarlospaco/css-html-js-minify/issues/9> it ;; looks like the user can choose a license. (license (list license:gpl3+ license:lgpl3+ license:expat)))) (define-public python-aws-sam-translator (package (name "python-aws-sam-translator") (version "1.51.0") (source (origin (method url-fetch) (uri (pypi-uri "aws-sam-translator" version)) (sha256 (base32 "1ywzchc3nk13xh593j7b14qp3y0fdx7cfbdhnm34p39av66xffac")))) (build-system python-build-system) (arguments `(;; XXX: Tests are not distributed with the PyPI archive, and would ;; introduce a circular dependency on python-cfn-lint. #:tests? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'loosen-requirements (lambda _ ;; The package needlessly specifies exact versions ;; of dependencies, when it works fine with others. (substitute* "requirements/base.txt" (("(.*)(~=[0-9\\.]+)" all package version) package))))))) (propagated-inputs (list python-boto3 python-jsonschema python-six)) (home-page "https://github.com/aws/serverless-application-model") (synopsis "Transform AWS SAM templates into AWS CloudFormation templates") (description "AWS SAM Translator is a library that transform @dfn{Serverless Application Model} (SAM) templates into AWS CloudFormation templates.") (license license:asl2.0))) (define-public python-aws-xray-sdk (package (name "python-aws-xray-sdk") (version "2.12.0") (home-page "https://github.com/aws/aws-xray-sdk-python") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0082q89dq5ww0a7q7rnyhywqvy4i8h3c0mnj7ilv3b0indhkasl8")))) (build-system pyproject-build-system) (arguments (list #:test-flags '(list ;; Tries to connect to external network resources "--ignore=tests/ext/httpx" ;; TODO: How to configure Django for these tests? "--ignore=tests/ext/django" ;; These tests require packages not yet in Guix. "--ignore=tests/ext/aiobotocore/test_aiobotocore.py" "--ignore=tests/ext/aiohttp/test_middleware.py" "--ignore=tests/ext/pg8000/test_pg8000.py" "--ignore=tests/ext/psycopg2/test_psycopg2.py" "--ignore=tests/ext/pymysql/test_pymysql.py" "--ignore=tests/ext/pynamodb/test_pynamodb.py" "--ignore=tests/ext/sqlalchemy_core/test_postgres.py" "--ignore=tests/test_async_recorder.py" ;; FIXME: Why is this failing? "--ignore=tests/test_patcher.py" ;; These tests want to access httpbin.org. "--ignore=tests/ext/requests/test_requests.py" "--ignore=tests/ext/httplib/test_httplib.py" "--ignore=tests/ext/aiohttp/test_client.py") #:phases '(modify-phases %standard-phases (add-before 'check 'pre-check (lambda _ ;; Allow "import tests.utils" to work as expected. (setenv "PYTHONPATH" (getcwd))))))) (native-inputs (list ;; These are required for the test suite. python-bottle python-flask python-flask-sqlalchemy python-httpx python-mock python-pymysql python-pytest python-pytest-aiohttp python-pytest-asyncio python-pytest-benchmark python-requests python-sqlalchemy python-webtest)) (propagated-inputs (list python-aiohttp python-botocore python-future python-jsonpickle python-urllib3 python-wrapt)) (synopsis "Profile applications on AWS X-Ray") (description "The AWS X-Ray SDK for Python enables Python developers to record and emit information from within their applications to the AWS X-Ray service.") (license license:asl2.0))) (define-public python-ovh (package (name "python-ovh") (version "1.1.0") (source (origin (method url-fetch) (uri (pypi-uri "ovh" version)) (sha256 (base32 "0ygniv12lixh9rvnjcd01gzbzk2b5xwcg2a59b7964a77dd9p3qh")))) (build-system pyproject-build-system) (arguments (list #:tests? #f)) ; XXX: tests require networking (propagated-inputs (list python-requests)) (native-inputs (list python-black python-coverage python-flake8 python-isort python-pytest python-pytest-cov python-setuptools python-sphinx python-wheel)) (home-page "https://api.ovh.com") (synopsis "Interact with OVHcloud APIs") (description "This package provides the official module to perform HTTP requests to the OVHcloud APIs.") (license license:bsd-3))) (define-public python-cbor2 (package (name "python-cbor2") (version "5.4.2.post1") (source (origin (method url-fetch) (uri (pypi-uri "cbor2" version)) (sha256 (base32 "15y78xcc3zkmvj1mdzz8gyhf3apbl91073kwhzbjk5abc1civwlw")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv"))))))) (native-inputs (list python-pytest python-pytest-cov python-setuptools-scm)) (home-page "https://github.com/agronholm/cbor2") (synopsis "Concise Binary Object Representation (CBOR) (de)serializer") (description "This Python library provides encoding and decoding for the Concise Binary Object Representation (CBOR) (@url{https://www.rfc-editor.org/rfc/rfc8949.html, RFC 8949}) serialization format. The specification is fully compatible with the original RFC 7049. Among its features are: @itemize @item Simple API like the @code{json} or @code{pickle} modules. @item Support many CBOR tags with stdlib objects. @item Generic tag decoding. @item Shared value references including cyclic references. @item String references compact encoding with repeated strings replaced with indices. @item Optional C module backend tested on big- and little-endian architectures. @item Extensible tagged value handling using tag_hook and object_hook on decode and default on encode. @end itemize") (license license:expat))) (define-public python-cfn-lint (package (name "python-cfn-lint") (version "0.65.0") (home-page "https://github.com/aws-cloudformation/cfn-lint") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1rfacp39jssrbchrzb49vwrqyzhx5v7jfcgngqnb9r7qfs4bwi3w")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'skip-network-test (lambda _ ;; This test requires networking. (substitute* "test/unit/module/formatters/test_formatters.py" (("def test_sarif_formatter") "def _test_sarif_formatter")))) (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (when tests? (let ((out (assoc-ref outputs "out"))) ;; Remove test for the documentation update scripts ;; to avoid a dependency on 'git'. (delete-file "test/unit/module/maintenance/test_update_documentation.py") (delete-file "test/unit/module/maintenance/test_update_resource_specs.py") (add-installed-pythonpath inputs outputs) (setenv "PATH" (string-append out "/bin:" (getenv "PATH"))) (invoke "python" "-m" "unittest" "discover" "-s" "test")))))))) (native-inputs (list python-pydot python-mock)) (propagated-inputs (list python-aws-sam-translator python-importlib-resources python-jschema-to-python python-jsonpatch python-jsonschema python-junit-xml python-networkx python-pyyaml python-sarif-om python-six)) (synopsis "Validate CloudFormation templates") (description "This package lets you validate CloudFormation YAML/JSON templates against the CloudFormation spec and additional checks. Includes checking valid values for resource properties and best practices.") (license license:expat))) (define-public python-jschema-to-python (package (name "python-jschema-to-python") (version "1.2.3") (source (origin (method url-fetch) (uri (pypi-uri "jschema_to_python" version)) (sha256 (base32 "14cvaiwm56g0v6p7zviikaa5i9ln3yqy910jmp60hirhbpz19zvn")))) (build-system python-build-system) (propagated-inputs (list python-attrs python-jsonpickle python-pbr)) (native-inputs (list python-pytest)) (home-page "https://github.com/microsoft/jschema-to-python") (synopsis "Generate Python classes from a JSON schema") (description "This package generates source code for Python classes from a @url{http://jschema.org,JSchema} JSON schema.") (license license:expat))) (define-public python-sarif-om (package (name "python-sarif-om") (version "1.0.4") (source (origin (method url-fetch) (uri (pypi-uri "sarif_om" version)) (sha256 (base32 "167gb8xjm0310km3w1s12bqldbv7zyklkr4j5900vq4361ml2pyd")))) (build-system python-build-system) (propagated-inputs (list python-attrs)) (native-inputs (list python-pbr)) (home-page "https://github.com/microsoft/sarif-python-om") (synopsis "Python implementation of the SARIF 2.1.0 object model") (description "This module contains classes for the object model defined by the @url{https://sarifweb.azurewebsites.net,Static Analysis Results Interchange Format (SARIF)} file format.") (license license:expat))) (define-public python-falcon (package (name "python-falcon") (version "3.1.0") (source (origin ;; Use git, as there are some test files missing from the PyPI release, ;; such as 'examples' directory. (method git-fetch) (uri (git-reference (url "https://github.com/falconry/falcon") (commit version))) (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet '(begin (delete-file-recursively "falcon/vendor") (substitute* "setup.py" ((".*falcon\\.vendor\\.mimeparse.*") "")) (substitute* '("falcon/media/handlers.py" "falcon/request.py" "tests/test_deps.py") (("from falcon\\.vendor ") "") (("mimeparse.mimeparse") "mimeparse")))) (sha256 (base32 "17k31d8avl63xsr6fzvmkxcsm7gnz5dqpgsz65psm1lpc38c79k3")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) ;; Skip orjson, which requires rust to build. (substitute* "tests/test_media_handlers.py" (("== 'CPython") "!= 'CPython")) (setenv "HOME" "/tmp") (invoke "pytest" "-vv" "tests")))))) (propagated-inputs (list python-mimeparse)) (native-inputs (list python-aiofiles python-cbor2 python-cython ;for faster binaries python-fakeredis python-httpx python-mujson python-msgpack python-pecan python-pillow python-pytest python-pytest-asyncio python-pytest-runner python-pyyaml python-rapidjson python-requests python-testtools python-ujson python-websockets)) (home-page "https://falconframework.org") (synopsis "Web framework for building APIs and application backends") (description "Falcon is a web API framework for building microservices, application backends and higher-level frameworks. Among its features are: @itemize @item Optimized and extensible code base @item Routing via URI templates and REST-inspired resource classes @item Access to headers and bodies through request and response classes @item Request processing via middleware components and hooks @item Idiomatic HTTP error responses @item Straightforward exception handling @item Unit testing support through WSGI helpers and mocks @item Compatible with both CPython and PyPy @item Cython support for better performance when used with CPython @end itemize") (license license:asl2.0))) (define-public python-falcon-cors (package (name "python-falcon-cors") (version "1.1.7") (source (origin (method url-fetch) (uri (pypi-uri "falcon-cors" version)) (sha256 (base32 "12pym7hwsbd8b0c1azn95nas8gm3f1qpr6lpyx0958xm65ffr20p")))) (build-system python-build-system) (native-inputs (list python-falcon)) (home-page "https://github.com/lwcolton/falcon-cors") (synopsis "Falcon @dfn{cross-origin resource sharing} (CORS) library") (description "This middleware provides @dfn{cross-origin resource sharing} (CORS) support for Falcon. It allows applying a specially crafted CORS object to the incoming requests, enabling the ability to serve resources over a different origin than that of the web application.") (license license:asl2.0))) (define-public python-furl (package (name "python-furl") (version "2.1.3") (source (origin (method url-fetch) (uri (pypi-uri "furl" version)) (sha256 (base32 "0knc76pm8pzigs3bpx9fccfsfxqrgblqphar46hq9i364vz8hqas")))) (build-system python-build-system) (propagated-inputs (list python-six python-orderedmultidict)) (native-inputs (list python-flake8)) (home-page "https://github.com/gruns/furl") (synopsis "URL manipulation in Python") (description "Furl provides an easy-to-use alternative to the @code{urllib} and @code{urlparse} modules for manipulating URLs.") (license license:unlicense))) (define-public python-httplib2 (package (name "python-httplib2") (version "0.22.0") (source (origin ;; Tests not included in the release tarball. (method git-fetch) (uri (git-reference (url "https://github.com/httplib2/httplib2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1zkp3glv0iha7p68p5m0sb8mrrammkdc0mx32517xry52s4iva7g")))) (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'adjust-test-requirements (lambda _ (substitute* "requirements-test.txt" (("==") ">="))))))) (native-inputs (list python-cryptography python-flake8 python-future python-mock python-pytest python-pytest-cov python-pytest-forked python-pytest-randomly python-pytest-timeout python-pytest-xdist python-six)) (home-page "https://github.com/httplib2/httplib2") (synopsis "Comprehensive HTTP client library") (description "A comprehensive HTTP client library supporting many features left out of other HTTP libraries.") (license license:expat))) (define-public python-cheroot (package (name "python-cheroot") (version "10.0.0") (source (origin (method url-fetch) (uri (pypi-uri "cheroot" version)) (sha256 (base32 "1w0ind0dza9j1py56y23344piqkpyfmcm060qfrnk6gggy3s3i2r")))) (build-system pyproject-build-system) (arguments (list #:test-flags #~(list "--cov=cheroot" ;; Tests are flaky in parallel invocation. ;; "--numprocesses=auto" "--doctest-modules" "--showlocals" ;; Disable test requiring networking. "-k" "not test_tls_client_auth") #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? test-flags #:allow-other-keys) (when tests? (with-directory-excursion "/tmp" (apply invoke "pytest" "-v" (append test-flags (list #$output)))))))))) (propagated-inputs (list python-jaraco-functools python-more-itertools python-six)) (native-inputs (list python-cryptography python-jaraco-text python-portend python-pyopenssl python-pypytools python-pytest python-pytest-cov python-pytest-mock python-pytest-xdist python-requests python-requests-toolbelt python-requests-unixsocket python-setuptools-scm python-setuptools-scm-git-archive python-trustme)) (home-page "https://cheroot.cherrypy.dev") (synopsis "Highly-optimized, pure-python HTTP server") (description "Cheroot is a high-performance, pure-Python HTTP server.") (license license:bsd-3))) (define-public httpie (package (name "httpie") (version "3.2.2") (source (origin (method url-fetch) (uri (pypi-uri "httpie" version)) (sha256 (base32 "140w4mr0w7scpf4j5qm4h475vbwrgxzkdwyygwcmql1r1cgngywb")))) (build-system python-build-system) (arguments ;; The tests attempt to access external web servers, so we cannot run them. '(#:tests? #f)) (propagated-inputs (list python-charset-normalizer python-colorama python-defusedxml python-importlib-metadata python-multidict python-pip python-pygments python-requests python-requests-toolbelt python-rich python-setuptools)) (home-page "https://httpie.io") (synopsis "cURL-like tool for humans") (description "A command line HTTP client with an intuitive UI, JSON support, syntax highlighting, wget-like downloads, plugins, and more. It consists of a single http command designed for painless debugging and interaction with HTTP servers, RESTful APIs, and web services.") ;; This was fixed in 1.0.3. (properties `((lint-hidden-cve . ("CVE-2019-10751")))) (license license:bsd-3))) (define-public parfive (package (name "parfive") (version "2.1.0") (source (origin (method url-fetch) (uri (pypi-uri "parfive" version)) (sha256 (base32 "13nw2y7wjzj6w049av6ff4d0zxgbhkrgck0xyh676c114hcv8v6d")))) (build-system pyproject-build-system) (arguments (list ;; Disable tests requiring network access. #:test-flags #~(list "-k" (string-append "not test_ftp" " and not test_ftp_pasv_command" " and not test_ftp_http")))) (propagated-inputs (list python-aiofiles python-aioftp python-aiohttp python-tqdm)) (native-inputs (list python-pytest python-pytest-asyncio python-pytest-cov python-pytest-localserver python-pytest-socket python-setuptools-scm)) (home-page "https://parfive.readthedocs.io/") (synopsis "HTTP and FTP parallel file downloader") (description "This package provides CLI tool and Python library @code{parallel} file downloader using asyncio. parfive can handle downloading multiple files in parallel as well as downloading each file in a number of chunks. asciicast demo of parfive parfive works by creating a downloader object, appending files to it and then running the download. parfive has a synchronous API, but uses asyncio to paralellise downloading the files.") (license license:expat))) (define-public python-html2text (package (name "python-html2text") (version "2020.1.16") (source (origin (method url-fetch) (uri (pypi-uri "html2text" version)) (sha256 (base32 "1fvv4z6dblii2wk1x82981ag8yhxbim1v2ksgywxsndh2s7335p2")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "test/")))))) (native-inputs (list python-pytest)) (home-page "https://github.com/Alir3z4/html2text") (synopsis "Convert HTML into plain text") (description "html2text takes HTML and converts it into plain ASCII text which is also valid markdown. html2text was originally written by Aaron Swartz.") (license license:gpl3+))) (define-public python-jose (package (name "python-jose") (version "3.3.0") (home-page "https://github.com/mpdavis/python-jose") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "18whsdpllg8574ma4r0qawkgw4nam6lsf63pi6761j38rvl84lg9")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "pytest" "-vv") (format #t "test suite not run~%")) #t))))) (native-inputs (list ;; All native inputs are for tests. python-pyasn1 python-pytest python-pytest-cov python-pytest-runner)) (propagated-inputs (list python-cryptography python-ecdsa python-rsa python-six)) (synopsis "JOSE implementation in Python") (description "The @dfn{JavaScript Object Signing and Encryption} (JOSE) technologies - JSON Web Signature (JWS), JSON Web Encryption (JWE), JSON Web Key (JWK), and JSON Web Algorithms (JWA) - collectively can be used to encrypt and/or sign content using a variety of algorithms.") (license license:expat))) (define-public python-jwcrypto (package (name "python-jwcrypto") (version "1.5.0") (source (origin (method url-fetch) (uri (pypi-uri "jwcrypto" version)) (sha256 (base32 "138bh6x1yy0qpk63bxa7mxnd97gfdm1fkpwm8wrdz3g3z0fca79c")))) (build-system pyproject-build-system) (propagated-inputs (list python-cryptography python-deprecated)) (home-page "https://github.com/latchset/jwcrypto") (synopsis "Implementation of JOSE Web standards") (description "WCrypto is an implementation of the @dfn{Javascript Object Signing and Encryption} (JOSE) Web Standards.") (license license:lgpl3+))) (define-public python-pyscss (package (name "python-pyscss") (version "1.4.0") (source (origin (method git-fetch) ; no tests in PyPI release (uri (git-reference (url "https://github.com/Kronuz/pyScss") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1vinddg8sbh3v9n1r1wmvjx6ydk8xp7scbvhb3csl4y9xz7vhk6g")))) (build-system pyproject-build-system) (native-inputs (list python-pytest python-pytest-cov)) (inputs (list pcre)) (home-page "https://github.com/Kronuz/pyScss") (synopsis "Scss compiler for Python") (description "@code{pyScss} is a compiler for Sass, a superset language of CSS3 that adds programming capabilities and some other syntactic sugar.") (license license:expat))) (define-public python-jsonpickle (package (name "python-jsonpickle") (version "3.0.4") (source (origin (method url-fetch) (uri (pypi-uri "jsonpickle" version)) (sha256 (base32 "0ay6r1bhcw7qy8k5n4xxgy9dqzhxx8syg5ra9wwqzk91ca6lrcd1")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; Prevent running the flake8 and black pytest plugins, which only tests ;; style and frequently causes harmless failures. '(list "-o" "addopts=''" "tests") #:phases '(modify-phases %standard-phases (add-before 'check 'pre-check (lambda* (#:key inputs #:allow-other-keys) (setenv "TZ" "UTC") (setenv "TZDIR" (search-input-directory inputs "share/zoneinfo"))))))) (propagated-inputs (list python-importlib-metadata)) (native-inputs (list python-bson python-ecdsa python-feedparser python-pymongo python-pytest python-pytest-benchmark python-pytest-cov python-pytest-enabler python-setuptools python-setuptools-scm python-simplejson python-sqlalchemy python-ujson tzdata-for-tests)) (home-page "https://jsonpickle.github.io/") (synopsis "Serialize object graphs into JSON") (description "This package provides a Python library for serializing any arbitrary object graph to and from JSON.") (license license:bsd-3))) (define-public python-mechanicalsoup (package (name "python-mechanicalsoup") (version "1.0.0") (source (origin (method url-fetch) (uri (pypi-uri "MechanicalSoup" version)) (sha256 (base32 "01sddjxy3rznh63hnl5lbv1hhk6xyiviwmkiw4x7v4ap35fb3lrp")))) (build-system python-build-system) (propagated-inputs (list python-beautifulsoup4 python-lxml python-requests python-six)) (native-inputs (list python-pytest-cov python-pytest-flake8 python-pytest-httpbin python-pytest-mock python-pytest-runner python-requests-mock)) (home-page "https://mechanicalsoup.readthedocs.io/") (synopsis "Python library for automating website interaction") (description "MechanicalSoup is a Python library for automating interaction with websites. It automatically stores and sends cookies, follows redirects, and can follow links and submit forms. It doesn’t do JavaScript.") (license license:expat))) (define-public python-hyperframe (package (name "python-hyperframe") (version "6.0.1") (source (origin (method url-fetch) (uri (pypi-uri "hyperframe" version)) (sha256 (base32 "055951gyhnjqpa2al52rj34g8yrls9inyn56n7nfkj0x4d300ldf")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv" "test"))))))) (native-inputs (list python-pytest)) (home-page "https://github.com/python-hyper/hyperframe") (synopsis "HTTP/2 framing layer for Python") (description "This library contains the HTTP/2 framing code used in the hyper project. It provides a pure-Python codebase that is capable of decoding a binary stream into HTTP/2 frames.") (license license:expat))) (define-public python-hpack (package (name "python-hpack") (version "4.0.0") (source (origin ;; PyPI tarball is missing some files necessary for the tests. (method git-fetch) (uri (git-reference (url "https://github.com/python-hyper/hpack") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "11qdayvz5a8zlzdcdm37f2z1fgnl67pz6j8xj2dz5rfa5lds29yq")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv" "test"))))))) (native-inputs (list python-pytest)) (home-page "https://hyper.rtfd.org") (synopsis "Pure-Python HPACK header compression") (description "This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use in Python programs that implement HTTP/2.") (license license:expat))) (define-public python-h11 (package (name "python-h11") (version "0.14.0") (source (origin (method url-fetch) (uri (pypi-uri "h11" version)) (sha256 (base32 "17b97c56y31hi0n0x0cb5a87x4xr9jijf2y06pzj0977k6zgn6cg")))) (build-system pyproject-build-system) (native-inputs (list python-pytest)) (home-page "https://github.com/python-hyper/h11") (synopsis "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1") (description "This is a little HTTP/1.1 library written from scratch in Python, heavily inspired by hyper-h2. It's a bring-your-own-I/O library; h11 contains no IO code whatsoever. This means you can hook h11 up to your favorite network API, and that could be anything you want.") (license license:expat))) (define-public python-h2 (package (name "python-h2") (version "4.1.0") (source (origin (method url-fetch) (uri (pypi-uri "h2" version)) (sha256 (base32 "1fraip114fm1ha5w37pdc0sk8dn9pb0ck267zrwwpap7zc4clfm8")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (invoke "python" "-m" "pytest" "-vv" "test"))))))) (native-inputs (list python-hypothesis python-pytest)) (propagated-inputs (list python-hpack python-hyperframe)) (home-page "https://github.com/python-hyper/h2") (synopsis "HTTP/2 State-Machine based protocol implementation") (description "This module contains a pure-Python implementation of a HTTP/2 protocol stack. It does not provide a parsing layer, a network layer, or any rules about concurrency. Instead, it's a purely in-memory solution, defined in terms of data actions and HTTP/2 frames. This is one building block of a full Python HTTP implementation.") (license license:expat))) (define-public python-sockjs-tornado (package (name "python-sockjs-tornado") (version "1.0.6") (source (origin (method url-fetch) (uri (pypi-uri "sockjs-tornado" version)) (sha256 (base32 "15dgv6hw6c7h3m310alw1h6p5443lrm9pyqhcv2smc13fz1v04pc")))) (build-system python-build-system) (arguments `(;; There are no tests, and running the test phase requires missing ;; dependencies #:tests? #f)) (propagated-inputs (list python-tornado)) (home-page "https://github.com/mrjoes/sockjs-tornado/") (synopsis "SockJS Python server implementation on top of the Tornado framework") (description "SockJS-tornado provides the server-side counterpart to a SockJS client library, through the Tornado framework. SockJS provides a low-latency, full-duplex, cross-domain communication channel between a web browser and web server.") (license license:expat))) (define-public python-flask-assets (package (name "python-flask-assets") (version "2.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Assets" version)) (sha256 (base32 "1hmqldxc7zciksmcl35jx0wbyrrxc7vk2a57mmmd8i07whsymz8x")))) (build-system python-build-system) (arguments ;; Tests require python-flask-script which is incompatible with Flask2. `(#:tests? #f)) (propagated-inputs (list python-flask python-webassets)) (home-page "https://github.com/miracle2k/flask-assets") (synopsis "Asset management for Flask") (description "This package integrates @code{webassets} with Flask, adding support for merging, minifying and compiling CSS and Javascript files.") (license license:bsd-2))) (define-public python-flask-babel (package (name "python-flask-babel") (version "2.0.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Babel" version)) (sha256 (base32 "0z95v77vib5il8hphyh16n7i15a2gmc06i615vm346ifvdfg9ypr")))) (build-system python-build-system) (propagated-inputs (list python-flask python-babel python-jinja2 python-pytz)) (home-page "https://github.com/python-babel/flask-babel") (synopsis "Add i18n/l10n support to Flask applications") (description "This package implements internationalization and localization support for Flask. This is based on the Python babel module as well as pytz - both of which are installed automatically if you install this library.") (license license:bsd-3))) (define-public python-flask-cors (package (name "python-flask-cors") (version "3.0.10") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Cors" version)) (sha256 (base32 "1pl16615fn1pc5n0vdrqlxm45mqsdjjxqv3gfkrs111v7wwkj25n")))) (build-system python-build-system) (native-inputs (list python-flask python-nose python-packaging)) (propagated-inputs (list python-six)) (home-page "https://flask-cors.readthedocs.io/en/latest/") (synopsis "Handle Cross-Origin Resource Sharing with Flask") (description "This package provides a Flask extension for handling @acronym{CORS,Cross Origin Resource Sharing}, making cross-origin AJAX possible.") (license license:expat))) (define-public python-flask-markdown (package (name "python-flask-markdown") (version "0.3") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Markdown" version)) (sha256 (base32 "0l32ikv4f7va926jlq4f7gx0xid247bhlxl6bd9av5dk8ljz1hyq")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; Tests seem to be incompatible with latest python (propagated-inputs (list python-markdown python-flask)) (native-inputs (list python-nose)) (home-page "https://github.com/dcolish/flask-markdown") (synopsis "Small extension to help with using Markdown in Flask") (description "Flask-Markdown supports several extensions for Markdown and integrates into Jinja2 by default.") (license license:bsd-3))) (define-public python-flask-misaka (package (name "python-flask-misaka") (version "1.0.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Misaka" version)) (sha256 (base32 "12gm6hq3lvlj0ddw8p6lk5pky8jk3pw758ihffjl49shnnzc68zl")))) (build-system python-build-system) (native-inputs (list python-coverage python-mock)) (propagated-inputs (list python-flask python-misaka)) (home-page "https://github.com/singingwolfboy/flask-misaka/") (synopsis "Flask interface to Misaka, a Markdown parsing library") (description "This package provides an interface between the Flask web framework and the Misaka Markdown parser.") (license license:expat))) (define-public python-flask-session (package (name "python-flask-session") (version "0.4.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Session" version)) (sha256 (base32 "0ihzlhdhss8f93p3njzva9rdm7kmhaakdlzz680wmi583wr59vf9")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; Tests require the various storage backends to be present (propagated-inputs (list python-cachelib python-flask)) (home-page "https://github.com/fengsp/flask-session") (synopsis "Adds server-side session support to your Flask application") (description "Flask-Session is an extension for Flask that adds support for Server-side sessions, with a variety of different backends for session storage.") (license license:bsd-3))) (define-public python-html5lib (package (name "python-html5lib") (version "1.1") (source (origin (method url-fetch) (uri (pypi-uri "html5lib" version)) (sha256 (base32 "0vqlhk0hgbsfkh7ybmby93xhlx8dq6pr5blf356ka3z2c41b9rdj")))) (build-system python-build-system) (propagated-inputs (list python-six python-webencodings ;; Required by Calibre 5. python-chardet)) (arguments `(#:test-target "check")) (home-page "https://github.com/html5lib/html5lib-python") (synopsis "Python HTML parser based on the WHATWG HTML specification") (description "Html5lib is an HTML parser based on the WHATWG HTML specification and written in Python.") (license license:expat))) (define-public python-html5-parser (package (name "python-html5-parser") (version "0.4.10") (source (origin (method url-fetch) (uri (pypi-uri "html5-parser" version)) (sha256 (base32 "195wgxls3df7djry9cz3p2k9644l6bfd66fczbaw55fsq0c48agr")))) (build-system python-build-system) (native-inputs (list pkg-config)) (inputs (list libxml2)) (propagated-inputs (list python-lxml python-beautifulsoup4 python-chardet)) (home-page "https://html5-parser.readthedocs.io") (synopsis "Fast C-based HTML5 parsing for Python") (description "This package provides a fast implementation of the HTML5 parsing spec for Python. Parsing is done in C using a variant of the gumbo parser. The gumbo parse tree is then transformed into an lxml tree, also in C, yielding parse times that can be a thirtieth of the html5lib parse times.") ;; src/as-python-tree.[c|h] are licensed GPL3. The other files ;; indicate ASL2.0, including the LICENSE file for the whole project. (license (list license:asl2.0 license:gpl3)))) (define-public python-html5tagger (package (name "python-html5tagger") (version "1.3.0") (source (origin (method url-fetch) (uri (pypi-uri "html5tagger" version)) (sha256 (base32 "1acd1a4f66gi4plqnsml7cf33qp83mxsnmnqpdwkpj7597xkvyl4")))) (build-system pyproject-build-system) (native-inputs (list python-setuptools-scm)) (home-page "https://github.com/sanic-org/html5tagger") (synopsis "Create HTML documents from Python") (description "@code{html5tagger} provides a simplified HTML5 syntax that can be written directly in Python without templates.") (license license:unlicense))) (define-public python-minio (package (name "python-minio") (version "7.1.9") (source (origin (method url-fetch) (uri (pypi-uri "minio" version)) (sha256 (base32 "02nh865xbf2glxvcy70ir6gkcwqxl119zryfc70q7w0yjvkg64d7")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-before 'check 'disable-failing-tests (lambda _ ;; This test requires network access. (delete-file "tests/unit/credentials_test.py")))))) (native-inputs (list python-faker python-mock python-nose)) (propagated-inputs (list python-certifi python-dateutil python-pytz python-urllib3)) (home-page "https://github.com/minio/minio-py") (synopsis "Programmatically access Amazon S3 from Python") (description "This package provides a Python library for interacting with any Amazon S3 compatible object storage server.") (license license:asl2.0))) (define-public python-pycurl (package (name "python-pycurl") (version "7.45.2") (source (origin (method url-fetch) (uri (pypi-uri "pycurl" version)) (sha256 (base32 "1ji46b924caa4saxvjxs9h673yy0kif297nxpnjn84r7w05mjc2p")))) (build-system pyproject-build-system) (arguments '(#:test-flags (list "-n" "auto" "-k" (string-append ;; Disable hanginging tests "not test_multi_socket_select" ;; E assert None is not None ;; E+ where None = ;; <tests.multi_callback_test.MultiCallbackTest ;; testMethod=test_easy_pause_unpause>.socket_result " and not test_easy_pause_unpause" " and not test_multi_socket_action" ;; E pycurl.error: (1, '') " and not test_http_version_3" ;; OSError: tests/fake-curl/libcurl/with_gnutls.so: cannot ;; open shared object file: No such file or directory " and not test_libcurl_ssl_gnutls" ;; OSError: tests/fake-curl/libcurl/with_nss.so: cannot ;; open shared object file: No such file or directory " and not test_libcurl_ssl_nss" ;; OSError: tests/fake-curl/libcurl/with_openssl.so: cannot ;; open shared object file: No such file or directory " and not test_libcurl_ssl_openssl" ;; pycurl.error: (56, 'Recv failure: Connection reset by ;; peer') " and not test_post_with_read_callback")) #:phases (modify-phases %standard-phases (add-before 'build 'configure-tls-backend (lambda _ ;; XXX: PycURL fails to automatically determine which ;; TLS backend to use when cURL is built with ;; --disable-static. See setup.py and ;; <https://github.com/pycurl/pycurl/pull/147>. (setenv "PYCURL_SSL_LIBRARY" "gnutls")))))) (native-inputs (list python-bottle python-flaky python-nose python-pytest python-pytest-xdist)) (inputs (list curl gnutls)) (home-page "http://pycurl.io/") (synopsis "Lightweight Python wrapper around libcurl") (description "Pycurl is a lightweight wrapper around libcurl. It provides high-speed transfers via libcurl and frequently outperforms alternatives.") ;; Per 'README.rst', this is dual-licensed: users can redistribute pycurl ;; under the terms of LGPLv2.1+ or Expat. (license (list license:lgpl2.1+ license:expat)))) (define-public python-webencodings (package (name "python-webencodings") (version "0.5.1") (source (origin (method url-fetch) (uri (pypi-uri "webencodings" version)) (sha256 (base32 "08qrgrc4hrximb2gqnl69g01s93rhf2842jfxdjljc1dbwj1qsmk")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "py.test" "-v" "webencodings/tests.py") #t))))) (native-inputs (list python-pytest)) (home-page "https://github.com/SimonSapin/python-webencodings") (synopsis "Character encoding aliases for legacy web content") (description "In order to be compatible with legacy web content when interpreting something like @code{Content-Type: text/html; charset=latin1}, tools need to use a particular set of aliases for encoding labels as well as some overriding rules. For example, @code{US-ASCII} and @code{iso-8859-1} on the web are actually aliases for @code{windows-1252}, and a @code{UTF-8} or @code{UTF-16} BOM takes precedence over any other encoding declaration. The WHATWG @url{https://encoding.spec.whatwg.org/,Encoding} standard defines all such details so that implementations do not have to reverse-engineer each other. This module implements the Encoding standard and has encoding labels and BOM detection, but the actual implementation for encoders and decoders is Python’s.") (license license:bsd-3))) (define-public python-omnipath (package (name "python-omnipath") (version "1.0.8") (source (origin (method url-fetch) (uri (pypi-uri "omnipath" version)) (sha256 (base32 "0krr4wzfwa6fs550cs0lcqwjj90p1inyncj9kvzi4x4m26xbj89q")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; These require internet access '(list "-k" "not test_download_homologene and not test_complex_genes") #:phases '(modify-phases %standard-phases (add-after 'unpack 'relax (lambda _ (substitute* "requirements.txt" (("wrapt>=1.12.0") "wrapt>=1.11.0")))) (add-after 'unpack 'set-home (lambda _ (setenv "HOME" "/tmp")))))) (propagated-inputs (list python-attrs python-docrep python-inflect python-networkx python-packaging python-pandas python-requests python-tqdm python-typing-extensions python-urllib3 python-wrapt)) (native-inputs (list python-bump2version python-pre-commit python-pytest python-pytest-mock python-pytest-socket python-requests-mock python-setuptools-scm python-tox)) (home-page "https://omnipathdb.org/") (synopsis "Python client for the OmniPath web service") (description "This package provides a Python client for the OmniPath web service.") (license license:expat))) (define-public python-openai (package (name "python-openai") (version "0.28.1") (source (origin (method url-fetch) (uri (pypi-uri "openai" version)) (sha256 (base32 "1j6wsavgrxzh6ls8hp45nllz8f5l65a6vzk0lvhlqnx6579xmqab")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; These require internet access and an openai API key. '(list "--ignore=openai/tests/asyncio/test_endpoints.py" "--ignore=openai/tests/test_endpoints.py" "-k" "not test_requestor_cycle_sessions\ and not test_requestor_sets_request_id\ and not test_file_cli"))) (propagated-inputs (list python-aiohttp python-requests python-tqdm python-typing-extensions)) (native-inputs (list python-black python-pytest python-pytest-asyncio python-pytest-mock)) (home-page "https://github.com/openai/openai-python") (synopsis "Python client library for the OpenAI API") (description "This package provides a Python client library for the OpenAI API.") (license license:expat))) (define-public python-openapi-schema-validator (package (name "python-openapi-schema-validator") (version "0.2.3") (source (origin (method git-fetch) ;no tests in pypi release (uri (git-reference (url "https://github.com/p1c2u/openapi-schema-validator") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1swm8h74nhg63nxk347blwq9f1qn6iiq3zisndcvm7axkq3pc2df")))) (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'remove-coverage-pytest-options (lambda _ (substitute* "pyproject.toml" (("^--cov.*") ""))))))) (native-inputs (list python-poetry-core python-pytest)) (propagated-inputs (list python-isodate python-jsonschema python-rfc3339-validator python-strict-rfc3339)) (home-page "https://github.com/p1c2u/openapi-schema-validator") (synopsis "OpenAPI schema validation library for Python") (description "Openapi-schema-validator is a Python library that validates a schema against: @itemize @item OpenAPI Schema Specification v3.0 which is an extended subset of the JSON Schema Specification Wright Draft 00. @item OpenAPI Schema Specification v3.1 which is an extended superset of the JSON Schema Specification Draft 2020-12. @end itemize") (license license:bsd-3))) (define-public python-openapi-spec-validator (package (name "python-openapi-spec-validator") (version "0.4.0") (source (origin (method git-fetch) ;no tests in pypi release (uri (git-reference (url "https://github.com/p1c2u/openapi-spec-validator") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1q09sjh4hsc0c8yqbd97h5mp6rwh427y6zyn8kv8wljk6sa0fs4q")))) (build-system pyproject-build-system) (arguments (list ;; The example tests attempt to fetch resources from the Internet ;; (see: https://github.com/p1c2u/openapi-spec-validator/issues/151). #:test-flags #~'("-k" "not Example and not Exampe") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'remove-coverage-pytest-options (lambda _ (substitute* "pyproject.toml" (("^--cov.*") ""))))))) (native-inputs (list python-poetry-core python-pytest)) (propagated-inputs (list python-jsonschema python-openapi-schema-validator python-pyyaml python-requests python-setuptools)) (home-page "https://github.com/p1c2u/openapi-spec-validator") (synopsis "OpenAPI spec validator") (description "OpenAPI Spec Validator is a Python library that validates an OpenAPI specification against the OpenAPI 2.0 (also known as Swagger), OpenAPI 3.0 and OpenAPI 3.1 specifications. The validator aims to check for full compliance with the specification.") (license license:asl2.0))) (define-public python-openapi-core (package (name "python-openapi-core") (version "0.14.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/p1c2u/openapi-core") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1npsibyf8zx6z230yl19kyap8g25kqvgm7z1w6rm6jxv58yqsp7r")))) (build-system pyproject-build-system) (arguments (list #:test-flags '(list "tests/unit" ;; Ignore Pytest configuration in setup.cfg that adds ;; unwanted flake8 and coverage options. "-c" "/dev/null" ;; This tests fails due to changes in Pytest; fixed ;; but not yet released upstream ;; (https://github.com/p1c2u/openapi-core/issues/158). "-k" "not test_string_format_invalid_value"))) (native-inputs (list python-django python-falcon python-flask python-mock python-poetry-core python-pypa-build python-pytest python-responses)) (propagated-inputs (list python-attrs python-dictpath python-isodate python-jsonschema python-lazy-object-proxy python-more-itertools python-openapi-schema-validator python-openapi-spec-validator python-parse python-six python-werkzeug)) (home-page "https://github.com/p1c2u/openapi-core") (synopsis "OpenAPI core library") (description "Openapi-core is a Python library that adds client-side and server-side support for the OpenAPI Specification v3. It has features such as: @itemize @item Validation of requests and responses @item Schema casting and unmarshalling @item Media type and parameters deserialization @item Security providers (API keys, Cookie, Basic and Bearer HTTP authentications) @item Custom deserializers and formats @item Integration with libraries and frameworks. @end itemize") (license license:bsd-3))) (define-public python-openid (package (name "python-openid") (version "3.2.0") (source (origin (method url-fetch) (uri (pypi-uri "python3-openid" version)) (sha256 (base32 "1bxf9a3ny1js422j962zfzl4a9dhj192pvai05whn7j0iy9gdyrk")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "coverage" "run" "-m" "unittest" "openid.test.test_suite"))))))) (propagated-inputs (list python-defusedxml)) (native-inputs (list python-coverage python-psycopg2 python-django)) (home-page "https://github.com/necaris/python3-openid") (synopsis "OpenID support for servers and consumers") (description "This library provides OpenID authentication for Python, both for clients and servers.") (license license:asl2.0))) (define-public python-cssutils (package (name "python-cssutils") (version "2.6.0") (source (origin (method url-fetch) (uri (pypi-uri "cssutils" version)) (sha256 (base32 "13l1y0xr3fgbl95w3pinb5av5dqk2ip39pih6vgrz47c3hyd5p7p")))) (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "-vv" "-k" ;; disable tests requiring network (string-append "not test_parseUrl " "and not encutils " "and not website.logging"))))))) (native-inputs (list python-pytest python-jaraco-test)) (home-page "https://github.com/jaraco/cssutils") (synopsis "CSS Cascading Style Sheets library for Python") (description "Cssutils is a Python package for parsing and building CSS Cascading Style Sheets. Currently it provides a DOM only and no rendering options.") (license license:lgpl3+))) (define-public python-css-parser (package (inherit python-cssutils) (name "python-css-parser") (version "1.0.7") (source (origin (method url-fetch) (uri (pypi-uri "css-parser" version ".tar.gz")) (sha256 (base32 "1ldv9s3an4pgk7b5x6z07rw9b5fdrasdldnf22829pb26b39dq15")))) (home-page "https://github.com/ebook-utils/css-parser") (synopsis "Fork of cssutils modified for parsing ebooks") (description "Css-parser is a Python package for parsing and building CSS Cascading Style Sheets. Currently it provides a DOM only and no rendering options. It's a fork of cssutils 1.0.2, updated and modified for parsing ebooks, due to cssutils not receiving updates as of 1.0.2.") (license license:lgpl3+))) (define-public python-cssselect (package (name "python-cssselect") (version "1.2.0") (source (origin ;; The PyPI release does not contain tests. (method git-fetch) (uri (git-reference (url "https://github.com/scrapy/cssselect") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1x4nrvb1p1byi1whmspik7lbh303akdlh762dayfxam3hycsh5kk")))) (build-system pyproject-build-system) (native-inputs (list python-lxml python-pytest)) (home-page "https://github.com/scrapy/cssselect") (synopsis "CSS3 selector parser and translator to XPath 1.0") (description "Cssselect ia a Python module that parses CSS3 Selectors and translates them to XPath 1.0 expressions. Such expressions can be used in lxml or another XPath engine to find the matching elements in an XML or HTML document.") (license license:bsd-3))) (define-public python-databricks-cli (package (name "python-databricks-cli") (version "0.17.0") (home-page "https://github.com/databricks/databricks-cli") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1qwbxnx64kw7lrzlyx3hfbnjxpc19cqvvj0gcrkqpyjsgd08vja0")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "tests" "-vv")))))) (native-inputs ;; For tests. (list python-decorator python-mock python-pytest python-requests-mock)) (propagated-inputs (list python-click python-oauthlib python-pyjwt python-requests python-six python-tabulate)) (synopsis "Command line interface for Databricks") (description "The Databricks Command Line Interface is a tool which provides an easy to use interface to the Databricks platform. The CLI is built on top of the Databricks REST APIs.") (license license:asl2.0))) (define-public python-openid-cla (package (name "python-openid-cla") (version "1.2") (source (origin (method url-fetch) (uri (pypi-uri "python-openid-cla" version)) (sha256 (base32 "102hy2qisvjxp5s0v9lvwqi4f2dk0dhns40vjgn008yxc7k0h3cr")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; No tests. (propagated-inputs (list python-openid python-six)) (home-page "https://github.com/puiterwijk/python-openid-cla/") (synopsis "Implementation of the OpenID CLA extension for python-openid") (description "@code{openid-cla} is an implementation of the OpenID contributor license agreement extension for python-openid.") (license license:bsd-3))) (define-public python-openid-teams (package (name "python-openid-teams") (version "1.1") (source (origin (method url-fetch) (uri (pypi-uri "python-openid-teams" version)) (sha256 (base32 "05zrh78alav24rxkbqlpbad6d3x2nljk6z6j7kflxf3vdqa7w969")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; No tests. (propagated-inputs (list python-openid python-six)) (home-page "https://github.com/puiterwijk/python-openid-teams/") (synopsis "Implementation of the OpenID teams extension for python-openid") (description "@code{openid-teams} is an implementation of the OpenID teams extension for python-openid.") (license license:bsd-3))) (define-public python-priority (package (name "python-priority") (version "1.3.0") (source (origin (method url-fetch) (uri (pypi-uri "priority" version)) (sha256 (base32 "1gpzn9k9zgks0iw5wdmad9b4dry8haiz2sbp6gycpjkzdld9dhbb")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv" "test" "-k" ;; This test exceeded the Hypothesis deadline. "not test_period_of_repetition")))))) (native-inputs (list python-hypothesis python-pytest python-pytest-cov python-pytest-xdist)) (home-page "https://python-hyper.org/projects/priority/en/latest/") (synopsis "Pure-Python implementation of the HTTP/2 priority tree") (description "Priority is a pure-Python implementation of the priority logic for HTTP/2, set out in RFC 7540 Section 5.3 (Stream Priority).") (license license:expat))) (define-public python-wsproto (package (name "python-wsproto") (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "wsproto" version)) (sha256 (base32 "0rahm1j9danv1l6i6as80acwv16ycihxkhrvwjiqh9drxhk5ymmd")))) (build-system pyproject-build-system) (native-inputs (list python-pytest)) (propagated-inputs (list python-h11)) (home-page "https://github.com/python-hyper/wsproto/") (synopsis "WebSockets state-machine based protocol implementation") (description "@code{wsproto} is a pure-Python implementation of a WebSocket protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can communicate via WebSockets, as defined in RFC6455, regardless of your programming paradigm.") (license license:expat))) (define-public hypercorn (package (name "hypercorn") (version "0.14.4") (source (origin (method git-fetch) ;PyPI does not have tests (uri (git-reference (url "https://github.com/pgjones/hypercorn") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0zyf5b8959sd12ycmqzvsb8746i3gn76rz55gxvix5cwj672m7yx")))) (build-system pyproject-build-system) ;; Propagate because Hypercorn also exposes functionality over a module. (propagated-inputs (list python-exceptiongroup python-h11 python-h2 python-priority python-tomli python-wsproto)) (native-inputs (list python-hypothesis python-poetry-core python-pytest python-pytest-asyncio python-pytest-cov python-pytest-trio python-trio)) (home-page "https://gitlab.com/pgjones/hypercorn/") (synopsis "ASGI Server based on Hyper libraries") (description "Hypercorn is an ASGI web server based on the sans-io hyper, h11, h2, and wsproto libraries and inspired by Gunicorn. It supports HTTP/1, HTTP/2, WebSockets (over HTTP/1 and HTTP/2), ASGI/2, and ASGI/3 specifications. It can utilise asyncio, uvloop, or trio worker types.") (license license:expat))) (define-public python-hypercorn (deprecated-package "python-hypercorn" hypercorn)) (define-public python-querystring-parser (package (name "python-querystring-parser") (version "1.2.4") (source (origin (method url-fetch) (uri (pypi-uri "querystring_parser" version)) (sha256 (base32 "0qlar8a0wa003hm2z6wcpb625r6vjj0a70rsni9h8lz0zwfcwkv4")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ ;; XXX FIXME: This test is broken with Python 3.7: ;; https://github.com/bernii/querystring-parser/issues/35 (substitute* "querystring_parser/tests.py" (("self\\.assertEqual\\(self\\.knownValuesNormalized, result\\)") "True")) (invoke "python" "querystring_parser/tests.py")))))) (propagated-inputs (list python-six)) (home-page "https://github.com/bernii/querystring-parser") (synopsis "QueryString parser that correctly handles nested dictionaries") (description "This package provides a query string parser for Python and Django projects that correctly creates nested dictionaries from sent form/querystring data.") (license license:expat))) (define-public python-tornado (package (name "python-tornado") (version "5.1.1") (source (origin (method url-fetch) (uri (pypi-uri "tornado" version)) (sha256 (base32 "02clqk2116jbnq8lnaqmdw3p52nqrd9ib59r4xz2ll43fpcmhlaf")))) (build-system python-build-system) (arguments (list #:phases '(modify-phases %standard-phases (add-after 'unpack 'fix-collections (lambda _ (substitute* "tornado/httputil.py" (("collections.MutableMapping") "collections.abc.MutableMapping")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (substitute* "tornado/test/runtests.py" (("\"error\", category=DeprecationWarning") "\"ignore\", category=DeprecationWarning") ;; Disable tests that use SSL. (("'tornado.test.simple_httpclient_test',") "") (("'tornado.test.iostream_test',") "") (("'tornado.test.httpserver_test',") "") ;; Some timeouts are triggered in these two modules (("'tornado.test.queues_test',") "") (("'tornado.test.locks_test',") "")) ;; Skip all network tests (setenv "NO_NETWORK" "1") ;; Skip timing-relevant tests (setenv "TRAVIS" "1") (invoke "python" "-m" "tornado.test.runtests" "--verbose=yes"))))))) (native-inputs (list python-certifi)) (home-page "https://www.tornadoweb.org/") (synopsis "Python web framework and asynchronous networking library") (description "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user.") (license license:asl2.0))) (define-public python-tornado-6 (package (name "python-tornado") (version "6.2") (source (origin (method url-fetch) (uri (pypi-uri "tornado" version)) (sha256 (base32 "04rwzjfqa31ajz8vvkfcsp1539m8n960msnppxkcckp8plch8qwv")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (setenv "ASYNC_TEST_TIMEOUT" "25") ; Like in tox.ini. (invoke "python" "-m" "tornado.test.runtests"))))))) (native-inputs (list python-certifi)) (home-page "https://www.tornadoweb.org/") (synopsis "Python web framework and asynchronous networking library") (description "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user.") (license license:asl2.0))) (define-public python-tornado-http-auth (package (name "python-tornado-http-auth") (version "1.1.1") (source (origin (method url-fetch) (uri (pypi-uri "tornado-http-auth" version)) (sha256 (base32 "0hyc5f0a09i5yb99pk4bxpg6w9ichbrb5cv7hc9hff7rxd8w0v0x")))) (build-system python-build-system) (propagated-inputs (list python-tornado)) (home-page "https://github.com/gvalkov/tornado-http-auth") (synopsis "Digest and basic authentication module for Tornado") (description "Provides support for adding authentication to services using the Tornado web framework, either via the basic or digest authentication schemes.") (license license:asl2.0))) (define-public python-terminado (package (name "python-terminado") (version "0.10.0") (source (origin (method url-fetch) (uri (pypi-uri "terminado" version)) (sha256 (base32 "1smvra3sc9sg64w49kfn5yhagshq3x55839748ck5dvxvk4hgza6")))) (build-system python-build-system) (propagated-inputs (list python-tornado-6 python-ptyprocess)) (native-inputs (list python-pytest)) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "-vv")))))) (home-page "https://github.com/jupyter/terminado") (synopsis "Terminals served to term.js using Tornado websockets") (description "This package provides a Tornado websocket backend for the term.js Javascript terminal emulator library.") (license license:bsd-2))) (define-public python-wsgi-intercept (package (name "python-wsgi-intercept") (version "1.2.2") (source (origin (method url-fetch) (uri (pypi-uri "wsgi_intercept" version)) (sha256 (base32 "0kjj2v2dvmnpdd5h5gk9rzz0f54rhjb0yiz3zg65bmp65slfw65d")))) (build-system python-build-system) (propagated-inputs (list python-six)) (native-inputs (list python-pytest python-httplib2 python-requests python-urllib3)) (synopsis "Puts a WSGI application in place of a real URI for testing") (description "Wsgi_intercept installs a WSGI application in place of a real URI for testing. Testing a WSGI application normally involves starting a server at a local host and port, then pointing your test code to that address. Instead, this library lets you intercept calls to any specific host/port combination and redirect them into a WSGI application importable by your test program. Thus, you can avoid spawning multiple processes or threads to test your Web app.") (home-page "https://github.com/cdent/wsgi-intercept") (license license:expat))) (define-public python-webob (package (name "python-webob") (version "1.8.6") (source (origin (method url-fetch) (uri (pypi-uri "WebOb" version)) (sha256 (base32 "026i3z99nr3px75isa9mbnky5i7rffiv4d124h5kxfjjsxz92fma")))) (build-system python-build-system) (native-inputs (list python-nose)) (home-page "https://webob.org/") (synopsis "WSGI request and response object") (description "WebOb provides wrappers around the WSGI request environment, and an object to help create WSGI responses.") (license license:expat))) (define-public python-zc-lockfile (package (name "python-zc-lockfile") (version "3.0.post1") (source (origin (method url-fetch) (uri (pypi-uri "zc.lockfile" version)) (sha256 (base32 "1v41irj7azaag3f14xyviv3l8mvap74v5p3q274k68vakrnyxcmd")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "zope-testrunner" "--test-path=src") (format #t "test suite not run~%"))))))) (native-inputs (list python-zope-testing python-zope-testrunner)) (home-page "https://github.com/zopefoundation/zc.lockfile") (synopsis "Interprocess locks using lock files") (description "This package provides an implementation of interprocess locks using lock files. These locks can also be used to mediate access to other files.") (license license:zpl2.1))) (define-public python-zconfig (package (name "python-zconfig") (version "4.0") (source (origin (method url-fetch) (uri (pypi-uri "ZConfig" version)) (sha256 (base32 "0mh13p38vq7ip4zkvaplzr8w0mqrmmqiyb5y663d165slvxl5mpq")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (begin ;; This test assumes we still have setup.py in the ;; directory from which we import zconfig, which ;; does not work after installing the package. (delete-file-recursively "src/ZConfig/tests/test_readme.py") (invoke "zope-testrunner" "-vv" "--test-path=src" "--all")) (format #t "test suite not run~%"))))))) (native-inputs (list python-docutils python-manuel python-zope-exceptions python-zope-testrunner)) (home-page "https://github.com/zopefoundation/ZConfig/") (synopsis "Structured configuration library intended for general use") (description "@code{zconfig} is a configuration library intended for general use. It supports a hierarchical schema-driven configuration model that allows a schema to specify data conversion routines written in Python. Its model is very different from the model supported by the @code{configparser} module found in Python's standard library, and is more suitable to configuration-intensive applications.") (license license:zpl2.1))) (define-public python-zodb (package (name "python-zodb") (version "5.8.1") (source (origin (method url-fetch) (uri (pypi-uri "ZODB" version)) (sha256 (base32 "1pv4w8mnx6j4xvkcjbkh99pv8ljby7g9f7zjq7zhdmk06sykmiy6")))) (build-system pyproject-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (begin ;; This test does not work after installing the ;; package, since it expects the ZODB source code ;; to reside in the src/ directory. (delete-file-recursively "src/ZODB/tests/testdocumentation.py") (invoke "zope-testrunner" "-vv" "--test-path=src" "--all")) (format #t "test suite not run~%"))))))) (propagated-inputs (list python-btrees python-persistent python-zconfig python-six python-transaction python-zc-lockfile python-zodbpickle python-zope-interface)) (native-inputs (list python-manuel python-zope-testing python-zope-testrunner)) (home-page "http://zodb-docs.readthedocs.io") (synopsis "Object-oriented database for Python") (description "@code{ZODB} provides an object-oriented and @acronym{ACID, Atomicity Consistency Isolation Durability} compliant database for Python with a high degree of transparency. @code{ZODB} is an object-oriented database, not an object-relational mapping. This comes with several advantaged: @itemize @item no separate language for database operations @item very little impact on your code to make objects persistent @item no database mapper that partially hides the database. @item almost no seam between code and database. @end itemize") (license license:zpl2.1))) (define-public python-zodbpickle (package (name "python-zodbpickle") (version "3.2") (source (origin (method url-fetch) (uri (pypi-uri "zodbpickle" version)) (sha256 (base32 "035bjrksl4h92mvjkx6id4gjcpc1k4mbci8ryjl6l9mki7ihx77b")))) (build-system pyproject-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "zope-testrunner" "-vv" "--test-path=src" "--all") (format #t "test suite not run~%"))))))) (native-inputs (list python-zope-testrunner)) (home-page "https://github.com/zopefoundation/zodbpickle") (synopsis "Uniform pickling interface for @code{zodb}") (description "This package is a fork of the @code{pickle} module (and the supporting C extension) from both Python 3.2 and Python 3.3. The fork adds support for the @code{noload} operations used by @code{zodb}.") (license (list license:psfl license:zpl2.1)))) (define-public python-zope-event (package (name "python-zope-event") (version "4.4") (source (origin (method url-fetch) (uri (pypi-uri "zope.event" version)) (sha256 (base32 "1ksbc726av9xacml6jhcfyn828hlhb9xlddpx6fcvnlvmpmpvhk9")))) (build-system python-build-system) (home-page "https://pypi.org/project/zope.event/") (synopsis "Event publishing system for Python") (description "Zope.event provides an event publishing API, intended for use by applications which are unaware of any subscribers to their events. It is a simple event-dispatching system on which more sophisticated event dispatching systems can be built.") (license license:zpl2.1))) (define-public python-zope-interface (package (name "python-zope-interface") (version "5.1.0") (source (origin (method url-fetch) (uri (pypi-uri "zope.interface" version)) (sha256 (base32 "03nrl6b8cb600dnnh46y149awvrm0gxyqgwq5hdw3lvys8mw9r20")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; test suite can't find python-zope-testing (native-inputs (list python-coverage python-nose python-zope-event python-zope-testing)) (home-page "https://github.com/zopefoundation/zope.interface") (synopsis "Python implementation of the \"design by contract\" methodology") (description "Zope.interface provides an implementation of \"object interfaces\" for Python. Interfaces are a mechanism for labeling objects as conforming to a given API or contract.") (license license:zpl2.1))) (define-public python-zope-exceptions (package (name "python-zope-exceptions") (version "4.6") (source (origin (method url-fetch) (uri (pypi-uri "zope.exceptions" version)) (sha256 (base32 "1kc3hql2i35ys5alkj9csiaz2s9bx0rff585vnrrgvavqsj297b1")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "zope-testrunner" "--test-path=src") (format #t "test suite not run~%"))))))) (native-inputs `(("python-zope-testrunner" ,python-zope-testrunner-bootstrap))) (propagated-inputs (list python-zope-interface)) (home-page "https://pypi.org/project/zope.exceptions/") (synopsis "Zope exceptions") (description "Zope.exceptions provides general-purpose exception types that have uses outside of the Zope framework.") (license license:zpl2.1))) (define (python-zope-bootstrap-package orig) (package (inherit orig) (name (string-append (package-name orig) "-bootstrap")) (arguments (if (null? (package-arguments orig)) `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'sanity-check))) (substitute-keyword-arguments (package-arguments orig) ((#:tests? _ #f) #f) ((#:phases phases '%standard-phases) `(modify-phases ,phases (delete 'sanity-check)))))) (propagated-inputs `()) (native-inputs `()) (properties `((hidden? . #t))))) (define-public python-zope-exceptions-bootstrap (python-zope-bootstrap-package python-zope-exceptions)) (define-public python-zope-testing (package (name "python-zope-testing") (version "4.7") (source (origin (method url-fetch) (uri (pypi-uri "zope.testing" version)) (sha256 (base32 "1sh3c3i0m8n8fnhqiry0bk3rr356i56ry7calmn57s1pvv8yhsyn")))) (build-system python-build-system) (home-page "https://pypi.org/project/zope.testing/") (synopsis "Zope testing helpers") (description "Zope.testing provides a number of testing utilities for HTML forms, HTTP servers, regular expressions, and more.") (license license:zpl2.1))) (define-public python-zope-testrunner (package (name "python-zope-testrunner") (version "5.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.testrunner" version)) (sha256 (base32 "0jyyf1dcz156q95x2y7yw2v420q2xn3cff0c5aci7hmdmcbn0gc7")))) (build-system python-build-system) (arguments '(#:tests? #f ;FIXME: Tests can't find zope.interface. #:phases (modify-phases %standard-phases (add-after 'unpack 'remove-problematic-test (lambda _ ;; This test contains invalid syntax, which breaks bytecode ;; compilation. For simplicity just remove it. (delete-file "src/zope/testrunner/tests/testrunner-ex/sample2/badsyntax.py")))))) (native-inputs (list python-zope-testing)) (propagated-inputs (list python-six python-zope-exceptions python-zope-interface)) (home-page "https://pypi.org/project/zope.testrunner/") (synopsis "Zope testrunner script") (description "Zope.testrunner provides a script for running Python tests.") (license license:zpl2.1))) (define-public python-zope-testrunner-bootstrap (package (inherit (python-zope-bootstrap-package python-zope-testrunner)) (propagated-inputs `(("python-six" ,python-six) ("python-zope-exceptions" ,python-zope-exceptions-bootstrap))) (properties `((hidden? . #t))))) (define-public python-zope-i18nmessageid (package (name "python-zope-i18nmessageid") (version "5.0.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.i18nmessageid" version)) (sha256 (base32 "0ndhn4w1qgwkfbwf9vm2bgq418z5g0wmfsgl0d9nz62cd0mi8d4m")))) (build-system python-build-system) (native-inputs (list python-coverage python-zope-testrunner)) (propagated-inputs (list python-six)) (home-page "https://pypi.org/project/zope.i18nmessageid/") (synopsis "Message identifiers for internationalization") (description "Zope.i18nmessageid provides facilities for declaring internationalized messages within program source text.") (license license:zpl2.1))) (define-public python-zope-schema (package (name "python-zope-schema") (version "7.0.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.schema" version)) (sha256 (base32 "1fgvx7nim9plxnyiq6vmah1dji7ba5290fws1i0lwk9m0g5xpm7a")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (add-installed-pythonpath inputs outputs) (if tests? (invoke "zope-testrunner" "--test-path=src") #t)))))) (propagated-inputs (list python-zope-event python-zope-interface)) (native-inputs (list python-zope-i18nmessageid python-zope-testing python-zope-testrunner)) (home-page "https://pypi.org/project/zope.schema/") (synopsis "Zope data schemas") (description "Zope.scheme provides extensions to zope.interface for defining data schemas.") (license license:zpl2.1))) (define-public python-zope-sqlalchemy (package (name "python-zope-sqlalchemy") (version "1.6") (source (origin (method url-fetch) (uri (pypi-uri "zope.sqlalchemy" version)) (sha256 (base32 "1azm2awl2ra10xl6wps3yvy14jk2rpzvsyfsb9cncm97aydbwlww")))) (build-system python-build-system) (propagated-inputs (list python-sqlalchemy python-transaction python-zope-interface)) (native-inputs (list python-zope-testing)) (home-page "https://github.com/zopefoundation/zope.sqlalchemy") (synopsis "Minimal SQLAlchemy transaction integration for Zope") (description "The aim of this package is to unify the plethora of existing packages integrating SQLAlchemy with Zope's transaction management. As such, it only provides a data manager and makes no attempt to define a @i{zopeish} way to configure engines.") (license license:zpl2.1))) (define-public python-zope-configuration (package (name "python-zope-configuration") (version "4.4.0") (source (origin (method url-fetch) (uri (pypi-uri "zope.configuration" version)) (sha256 (base32 "0g6vrl7y27z9cj5xyrww9xlzk4npj55mgmlrcd9d2nj08jn2pw79")))) (build-system python-build-system) (native-inputs (list python-manuel python-zope-testing python-zope-testrunner)) (propagated-inputs (list python-zope-i18nmessageid python-zope-interface python-zope-schema)) (home-page "https://pypi.org/project/zope.configuration/") (synopsis "Zope Configuration Markup Language") (description "Zope.configuration implements ZCML, the Zope Configuration Markup Language.") (license license:zpl2.1))) (define-public python-zope-configuration-bootstrap (python-zope-bootstrap-package python-zope-configuration)) (define-public python-zope-copy (package (name "python-zope-copy") (version "4.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.copy" version)) (sha256 (base32 "06m75434krl57n6p73c2qj55k5i3fixg887j8ss01ih6zw4rvfs7")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "zope-testrunner" "--test-path=src" "\\[]")))))) (propagated-inputs (list python-zope-interface)) (native-inputs `(("python-zope-component" ,python-zope-component-bootstrap) ("python-zope-location" ,python-zope-location-bootstrap) ("python-zope-testing" ,python-zope-testing) ("python-zope-testrunner" ,python-zope-testrunner))) (home-page "https://github.com/zopefoundation/zope.copy") (synopsis "Pluggable object copying mechanism") (description "This package provides a pluggable mechanism for copying persistent objects.") (license license:zpl2.1))) (define-public python-zope-proxy (package (name "python-zope-proxy") (version "4.3.5") (source (origin (method url-fetch) (uri (pypi-uri "zope.proxy" version)) (sha256 (base32 "14h7nyfbl5vpfk0rbviy4ygdfx0yx5kncvg6jpbdb0dhwna0ssm6")))) (build-system python-build-system) (native-inputs (list python-zope-security-bootstrap python-zope-testrunner)) (propagated-inputs (list python-zope-interface)) (home-page "https://pypi.org/project/zope.proxy/") (synopsis "Generic, transparent proxies") (description "Zope.proxy provides generic, transparent proxies for Python. Proxies are special objects which serve as mostly-transparent wrappers around another object, intervening in the apparent behavior of the wrapped object only when necessary to apply the policy (e.g., access checking, location brokering, etc.) for which the proxy is responsible.") (license license:zpl2.1))) (define-public python-zope-proxy-bootstrap (python-zope-bootstrap-package python-zope-proxy)) (define-public python-zope-hookable (package (name "python-zope-hookable") (version "5.0.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.hookable" version)) (sha256 (base32 "0hc82lfr7bk53nvbxvjkibkarngyrzgfk2i6bg8wshl0ly0pdl19")))) (build-system python-build-system) (native-inputs (list python-coverage python-zope-testing)) (home-page "https://github.com/zopefoundation/zope.hookable") (synopsis "Zope hookable") (description "This package supports the efficient creation of hookable objects, which are callable objects that are meant to be optionally replaced. The idea is that you create a function that does some default thing and make i hookable. Later, someone can modify what it does by calling its sethook method and changing its implementation. All users of the function, including those that imported it, will see the change.") (license license:zpl2.1))) (define-public python-zope-location (package (name "python-zope-location") (version "4.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.location" version)) (sha256 (base32 "1b40pzl8v00d583d3gsxv1qjdw2dhghlgkbgxl3m07d5r3izj857")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; FIXME: Tests can't find zope.interface. (native-inputs (list python-zope-testrunner)) (propagated-inputs (list python-zope-interface python-zope-proxy python-zope-schema)) (home-page "https://pypi.org/project/zope.location/") (synopsis "Zope location library") (description "Zope.location implements the concept of \"locations\" in Zope3, which are are special objects that have a structural location.") (license license:zpl2.1))) (define-public python-zope-location-bootstrap (python-zope-bootstrap-package python-zope-location)) (define-public python-zope-security (package (name "python-zope-security") (version "5.1.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.security" version)) (sha256 (base32 "11lfw67cigscfax9c5j63xcvz2qcj724zx5fcdqyc94am2glim0h")))) (build-system python-build-system) (propagated-inputs (list python-zope-component python-zope-i18nmessageid python-zope-interface python-zope-location python-zope-proxy python-zope-schema)) (native-inputs (list python-btrees python-zope-component-bootstrap python-zope-configuration-bootstrap python-zope-location-bootstrap python-zope-testing python-zope-testrunner)) (home-page "https://pypi.org/project/zope.security/") (synopsis "Zope security framework") (description "Zope.security provides a generic mechanism to implement security policies on Python objects.") (license license:zpl2.1))) (define-public python-zope-security-bootstrap (package (inherit (python-zope-bootstrap-package python-zope-security)) (propagated-inputs `(("python-zope-i18nmessageid" ,python-zope-i18nmessageid) ("python-zope-interface" ,python-zope-interface) ("python-zope-proxy" ,python-zope-proxy-bootstrap) ("python-zope-schema" ,python-zope-schema))))) (define-public python-zope-component (package (name "python-zope-component") (version "4.6.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.component" version)) (sha256 (base32 "14iwp95hh6q5dj4k9h1iw75cbp89bs27nany4dinyglb44c8jqli")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (invoke "python" "setup.py" "test") (format #t "test suite not run~%"))))))) (native-inputs `(("python-persistent" ,python-persistent) ("python-zope-configuration" ,python-zope-configuration-bootstrap) ("python-zope-i18nmessageid" ,python-zope-i18nmessageid) ("python-zope-location" ,python-zope-location-bootstrap) ("python-zope-proxy" ,python-zope-proxy-bootstrap) ("python-zope-security" ,python-zope-security-bootstrap) ("python-zope-testing" ,python-zope-testing) ("python-zope-testrunner" ,python-zope-testrunner))) (propagated-inputs (list python-zope-deferredimport python-zope-deprecation python-zope-event python-zope-hookable python-zope-interface)) (home-page "https://github.com/zopefoundation/zope.component") (synopsis "Zope Component Architecture") (description "Zope.component represents the core of the Zope Component Architecture. Together with the zope.interface package, it provides facilities for defining, registering and looking up components.") (license license:zpl2.1))) (define-public python-zope-component-bootstrap (python-zope-bootstrap-package python-zope-component)) (define-public python-zope-deferredimport (package (name "python-zope-deferredimport") (version "4.3.1") (source (origin (method url-fetch) (uri (pypi-uri "zope.deferredimport" version)) (sha256 (base32 "1q89v54dwniiqypjbwywwdfjdr4kdkqlyqsgrpplgvsygdg39cjp")))) (build-system python-build-system) (propagated-inputs (list python-zope-proxy)) (native-inputs (list python-zope-testrunner)) (home-page "https://github.com/zopefoundation/zope.deferredimport") (synopsis "Defer imports until used by code") (description "Often, especially for package modules, you want to import names for convenience, but not actually perform the imports until necessary. The @code{zope.deferredimport} package provided facilities for defining names in modules that will be imported from somewhere else when used. You can also cause deprecation warnings to be issued when a variable is used.") (license license:zpl2.1))) (define-public python-ndg-httpsclient (package (name "python-ndg-httpsclient") (version "0.5.1") (source (origin (method url-fetch) (uri (pypi-uri "ndg_httpsclient" version)) (sha256 (base32 "0412b7i1s4vj7lz9r72nmb28h9syd4q2x89bdirkkc3a6z8awbyp")))) (build-system python-build-system) (arguments '(;; The tests appear to require networking. #:tests? #f)) (propagated-inputs (list python-pyasn1 python-pyopenssl)) (synopsis "HTTPS support for Python's httplib and urllib2") (description "This is a HTTPS client implementation for httplib and urllib2 based on PyOpenSSL. PyOpenSSL provides a more fully-featured SSL implementation over the default provided with Python and, importantly, enables full verification of the SSL peer.") (home-page "https://github.com/cedadev/ndg_httpsclient/") (license license:bsd-3))) (define-public python-nh3 (package (name "python-nh3") (version "0.2.17") (source (origin (method url-fetch) (uri (pypi-uri "nh3" version)) (sha256 (base32 "0a7hrca5bbbrz20cbqy16n8vaxf4v2q1r9zv9vjlbmn334d79l20")))) (build-system cargo-build-system) (arguments (list #:imported-modules `(,@%cargo-build-system-modules ,@%pyproject-build-system-modules) #:modules '((guix build cargo-build-system) ((guix build pyproject-build-system) #:prefix py:) (guix build utils)) #:phases #~(modify-phases %standard-phases (replace 'build (assoc-ref py:%standard-phases 'build)) (replace 'install (assoc-ref py:%standard-phases 'install)) ;; cargo-build-system's %standard-phases has 'check before 'install. (delete 'check) (add-after 'install 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (py:add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv" "tests"))))) #:cargo-inputs `(("rust-ammonia" ,rust-ammonia-4) ("rust-pyo3" ,rust-pyo3-0.21)) #:install-source? #false)) (native-inputs (list maturin python-pytest python-wrapper)) (home-page "https://nh3.readthedocs.io") (synopsis "Python bindings to Ammonia HTML sanitization library") (description "This package provides Python bindings to Ammonia HTML sanitizer Rust crate.") (license license:expat))) (define-public python-noiseprotocol (package (name "python-noiseprotocol") (version "0.3.1") (source (origin (method url-fetch) (uri (pypi-uri "noiseprotocol" version)) (sha256 (base32 "0ifnj0mpbqsfqba9n12vf5yzxj4qf2gxql3ry43qyshgnrqsi4mh")))) (build-system pyproject-build-system) (propagated-inputs (list python-cryptography)) (home-page "https://github.com/plizonczyk/noiseprotocol") (synopsis "Implementation of Noise Protocol Framework") (description "This package provides an implementation of Noise Protocol Framework.") (license license:expat))) (define-public python-websocket-client (package (name "python-websocket-client") (version "1.2.3") (source (origin (method url-fetch) (uri (pypi-uri "websocket-client" version)) (sha256 (base32 "1xba9z6b211pandrlk2l5p8wj6gn7yfkpq1sxfbqjl6c19n8258k")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'skip-network-test (lambda _ ;; This test requires networking. (substitute* "websocket/tests/test_http.py" (("def testConnect") "def _testConnect")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "websocket/tests"))))))) (native-inputs (list python-pysocks python-pytest python-websockets)) (home-page "https://github.com/websocket-client/websocket-client") (synopsis "WebSocket client for Python") (description "The Websocket-client module provides the low level APIs for WebSocket usage in Python programs.") (license license:lgpl2.1+))) (define-public python-websocket-client-0.59 (package (inherit python-websocket-client) (version "0.59.0") (source (origin (method url-fetch) (uri (pypi-uri "websocket-client" version)) (sha256 (base32 "0p0cz2mdissq7iw1n7jrmsfir0jfmgs1dvnpnrx477ffx9hbsxnk")))))) (define-public python-purl (package (name "python-purl") (version "1.5") (source (origin (method url-fetch) (uri (pypi-uri "purl" version)) (sha256 (base32 "15ibnz1xrh5msmn04j0nr00sz4n7jwx6cwd6zlx99kkz3vpin53m")))) (build-system python-build-system) (propagated-inputs (list python-six)) (home-page "https://github.com/codeinthehole/purl") (synopsis "Python package for URL manipulation") (description "Purl is a Python package for handling URLs.") (license license:expat))) (define-public python-apiron (package (name "python-apiron") (version "5.1.0") (source (origin (method url-fetch) (uri (pypi-uri "apiron" version)) (sha256 (base32 "1qwbqn47sf0aqznj1snbv37v8ijx476qqkjf5l9pac7xjkxsr8qk")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv" "--cov" "-k" ;; This test tries to connect to the internet. "not test_call")))))) (propagated-inputs (list python-requests)) (native-inputs (list python-pytest python-pytest-cov)) (home-page "https://github.com/ithaka/apiron") (synopsis "Python wrapper for interacting with RESTful APIs") (description "@code{apiron} provides a declarative, structured configuration of services and endpoints with a unified interface for interacting with RESTful APIs.") (license license:expat))) (define-public python-beren (package (name "python-beren") (version "0.7.0") (source (origin (method url-fetch) (uri (pypi-uri "beren" version)) (sha256 (base32 "1v3mdwfqsyza892zvs124ym9w1bkng1j56b7l4dwfjir3723xcgf")))) (build-system python-build-system) (arguments ;; The test tries to open a connection to a remote server. `(#:tests? #f)) (propagated-inputs (list python-apiron)) (home-page "https://github.com/teffalump/beren") (synopsis "REST client for Orthanc DICOM servers") (description "@code{beren} provides a REST client for Orthanc, a DICOM server.") (license license:gpl3+))) (define-public python-requests (package (name "python-requests") (version "2.28.1") (source (origin (method url-fetch) (uri (pypi-uri "requests" version)) (sha256 (base32 "10vrr7bijzrypvms3g2sgz8vya7f9ymmcv423ikampgy0aqrjmbw")))) (build-system python-build-system) (propagated-inputs (list python-certifi python-charset-normalizer python-idna python-urllib3)) (arguments ;; FIXME: Some tests require network access. '(#:tests? #f)) (home-page "http://python-requests.org/") (synopsis "Python HTTP library") (description "Requests is a Python HTTP client library. It aims to be easier to use than Python’s urllib2 library.") (license license:asl2.0))) (define-public python-requests-next (package (name "python-requests") (version "2.32.3") (source (origin (method url-fetch) (uri (pypi-uri "requests" version)) (sha256 (base32 "0q5742pnibwy74169kacin3dmqg9jzmzk7qab5aq5caffcbm8djm")))) (build-system python-build-system) (native-inputs (list nss-certs-for-test)) (propagated-inputs (list python-certifi python-charset-normalizer python-idna python-urllib3)) (arguments ;; FIXME: Some tests require network access. '(#:tests? #f)) (home-page "http://python-requests.org/") (synopsis "Python HTTP library") (description "Requests is a Python HTTP client library. It aims to be easier to use than Python’s urllib2 library.") (license license:asl2.0))) (define-public python-requests-kerberos (package (name "python-requests-kerberos") (version "0.14.0") ;; No tests in the PyPI tarball. (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/requests/requests-kerberos") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0s30pcnlir3j2jmf7yh065f294cf3x0x5i3ldskn8mm0a3657mv3")))) (build-system pyproject-build-system) (propagated-inputs (list python-cryptography python-pyspnego python-requests)) (native-inputs (list python-pytest python-pytest-mock)) (home-page "https://github.com/requests/requests-kerberos") (synopsis "Kerberos authentication handler for python-requests") (description "This package provides a Kerberos authentication handler for python-requests.") (license license:isc))) (define-public python-requests-unixsocket (package (name "python-requests-unixsocket") (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "requests-unixsocket" version)) (sha256 (base32 "1sn12y4fw1qki5gxy9wg45gmdrxhrndwfndfjxhpiky3mwh1lp4y")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'relax-requirements (lambda _ (substitute* "test-requirements.txt" (("(.*)==(.*)" _ name) (string-append name "\n"))))) (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) ;; Avoid a deprecation error. (substitute* "pytest.ini" (("--pep8") "")) (when tests? (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv"))))))) (propagated-inputs (list python-pbr python-requests python-urllib3)) (native-inputs (list python-apipkg python-appdirs python-execnet python-packaging python-pep8 python-py python-pyparsing python-pytest python-pytest-cache python-pytest-pep8 python-six python-waitress)) (home-page "https://github.com/msabramo/requests-unixsocket") (synopsis "Talk HTTP via a UNIX domain socket") (description "This Python package lets you use the @code{requests} library to talk HTTP via a UNIX domain socket.") (license license:asl2.0))) (define-public python-requests_ntlm (package (name "python-requests_ntlm") (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "requests_ntlm" version)) (sha256 (base32 "1a0np7lk8ma1plv1s4aw5q9h2z3aljprkl9qsfypqcaf0zsqbhik")))) (build-system python-build-system) (propagated-inputs (list python-cryptography python-pyspnego python-requests)) (home-page "https://github.com/requests/requests-ntlm") (synopsis "NTLM authentication support for Requests") (description "This package allows for HTTP NTLM authentication using the requests library.") (license license:isc))) (define-public python-requests-mock (package (name "python-requests-mock") (version "1.8.0") (source (origin (method url-fetch) (uri (pypi-uri "requests-mock" version)) (sha256 (base32 "09nj8fmyj7xz2mgwyvbw0fl9zybmx2d3qd2hf529vvjc9s24d3z6")))) (build-system python-build-system) (propagated-inputs (list python-requests python-six)) (native-inputs (list python-pbr python-discover python-docutils python-fixtures python-mock python-purl python-pytest python-sphinx python-testrepository)) (home-page "https://requests-mock.readthedocs.org/") (synopsis "Mock out responses from the requests package") (description "This module provides a building block to stub out the HTTP requests portions of your testing code.") (license license:asl2.0))) (define-public python-requests-toolbelt (package (name "python-requests-toolbelt") (version "0.9.1") (source (origin (method url-fetch) (uri (pypi-uri "requests-toolbelt" version)) (sha256 (base32 "1h3gm88dcjbd7gm229a7x5qkkhnsqsjz0m0l2xyavm2ab3a8k04n")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'delete-problematic-tests (lambda _ ;; Fails because of expired certificate. (delete-file "tests/test_x509_adapter.py") ;; Fails due to networking (socket.gaierror: [Errno -2] ;; Name or service not known). (delete-file "tests/test_multipart_encoder.py")))))) (native-inputs (list python-betamax python-mock python-pytest)) (propagated-inputs (list python-requests)) (synopsis "Extensions to python-requests") (description "This is a toolbelt of useful classes and functions to be used with python-requests.") (home-page "https://github.com/requests/toolbelt/") (license license:asl2.0))) (define-public python-requests-ftp (package (name "python-requests-ftp") (version "0.3.1") (source (origin (method url-fetch) (uri (pypi-uri "requests-ftp" version)) (sha256 (base32 "0yh5v21v36dsjsgv4y9dx4mmz35741l5jf6pbq9w19d8rfsww13m")))) (build-system python-build-system) (propagated-inputs (list python-requests)) (home-page "https://github.com/Lukasa/requests-ftp") (synopsis "FTP Transport Adapter for Requests") (description "Requests-FTP is an implementation of a simple FTP transport adapter for use with the Requests library.") (license license:asl2.0))) (define-public python-aioftp (package (name "python-aioftp") (version "0.22.3") (source (origin (method url-fetch) (uri (pypi-uri "aioftp" version)) (sha256 (base32 "0w621mg956m9rn7v39jpwi4gpnpl90pprwl29cp640dahqqv38ms")))) (build-system pyproject-build-system) (native-inputs (list python-async-timeout python-pytest python-pytest-asyncio python-pytest-cov python-trustme)) (propagated-inputs (list python-siosocks)) (home-page "https://aioftp.readthedocs.io/") (synopsis "FTP client/server for asyncio in Python") (description "FTP client and server for asyncio (Python 3) Library implementing FTP protocol, both client and server for Python asyncio module. Supported commands as client: USER, PASS, ACCT, PWD, CWD, CDUP, MKD, RMD, MLSD, MLST, RNFR, RNTO, DELE, STOR, APPE, RETR, TYPE, PASV, ABOR, QUIT, REST, LIST (as fallback). Supported commands as server: USER, PASS, QUIT, PWD, CWD, CDUP, MKD, RMD, MLSD, LIST (non-standard), MLST, RNFR, RNTO, DELE, STOR, RETR, TYPE (\"I\" and \"A\"), PASV, ABOR, APPE, REST.") (license license:asl2.0))) (define-public python-msal (package (name "python-msal") (version "1.22.0") (home-page "https://github.com/AzureAD/microsoft-authentication-library-for-python") (source (origin (method git-fetch) ;; Pypi does not have tests. (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1pgpf8fa0mdga69hr6i66mq2a2vyn8dlcf4fdzqmbgw2il9b37q6")))) (build-system python-build-system) (arguments ;; Tests (all?) rely on network access and only some can be disabled by ;; setting the environment variable TRAVIS_TAG. (list #:tests? #f)) (native-inputs (list python-mock)) (propagated-inputs (list python-cryptography python-pyjwt python-requests)) (synopsis "Microsoft Authentication Library (MSAL) for Python") (description "The Microsoft Authentication Library for Python enables applications to integrate with the Microsoft identity platform. It allows you to sign in users or apps with Microsoft identities (Azure AD, Microsoft Accounts and Azure AD B2C accounts) and obtain tokens to call Microsoft APIs such as Microsoft Graph or your own APIs registered with the Microsoft identity platform. It is built using industry standard OAuth2 and OpenID Connect protocols.") (license license:expat))) (define-public oauth2ms (let ((commit "a1ef0cabfdea57e9309095954b90134604e21c08") (revision "0")) (package (name "oauth2ms") (version (git-version "0.0.0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/harishkrupo/oauth2ms") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "0dqi6n4npdrvb42r672n4sl1jl8z5lsk554fwiiihpj0faa9dx64")))) (build-system copy-build-system) (arguments (list #:install-plan #~`(("oauth2ms" "bin/oauth2ms") ("." #$(string-append "share/doc/" name "-" version "/") #:include-regexp ("\\.org$"))) #:phases #~(modify-phases %standard-phases (add-after 'install 'wrap-pythonpath (lambda* (#:key inputs outputs #:allow-other-keys) (let ((path (getenv "GUIX_PYTHONPATH"))) (wrap-program (string-append #$output "/bin/oauth2ms") `("GUIX_PYTHONPATH" ":" prefix (,path))))))))) (inputs (list bash-minimal python python-gnupg python-msal python-pyxdg)) (home-page "https://github.com/harishkrupo/oauth2ms") (synopsis "XOAUTH2 compatible Microsoft Office 365 token fetcher") (description "Oauth2ms can be used to fetch OAuth 2.0 tokens from the Microsoft Identity endpoint. Additionally, it can encode the token in the XOAUTH2 format to be used as authentication in IMAP mail servers.") (license license:asl2.0)))) (define-public python-oauthlib (package (name "python-oauthlib") (version "3.1.0") (source (origin (method url-fetch) (uri (pypi-uri "oauthlib" version)) (sha256 (base32 "12gqnabwck30gdlpwm6af3s28qm9p2yc7b1w8s4fk9ncbz1irr5y")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "-vv")))))) (native-inputs (list python-pytest python-pytest-cov python-mock)) (propagated-inputs (list python-cryptography python-pyjwt python-blinker)) (home-page "https://github.com/oauthlib/oauthlib") (synopsis "OAuth implementation for Python") (description "Oauthlib is a generic, spec-compliant, thorough implementation of the OAuth request-signing logic.") (license license:bsd-3))) (define-public python-rauth (package (name "python-rauth") (version "0.7.3") (source (origin (method url-fetch) (uri (pypi-uri "rauth" version)) (sha256 (base32 "02kv8w8l98ky223avyq7vw7x1f2ya9chrm59r77ylq45qb0xnk2j")))) (build-system python-build-system) (arguments `(#:test-target "check")) (propagated-inputs (list python-requests)) (home-page "https://github.com/litl/rauth") (synopsis "Python library for OAuth 1.0/a, 2.0, and Ofly") (description "Rauth is a Python library for OAuth 1.0/a, 2.0, and Ofly. It also provides service wrappers for convenient connection initialization and authenticated session objects providing things like keep-alive.") (license license:expat))) (define-public python-unalix (package (name "python-unalix") (version "0.9") (source (origin ;; There's only a wheel on PyPI. (method git-fetch) (uri (git-reference (url "https://github.com/AmanoTeam/Unalix") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0h8wc1axv26h753a8brc6dccqndx005c2bhr09gwg5c1hj9zsfml")))) (build-system python-build-system) (native-inputs (list python-pytest)) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest"))))))) (home-page "https://pypi.org/project/Unalix/") (synopsis "Python library for removing tracking fields from URLs") (description "Unalix is a library written in Python implementing the specification used by the @url{https://github.com/ClearURLs/Addon, ClearURLs} addon for removing tracking fields from URLs.") (license license:lgpl3+))) (define-public python-urllib3 (package (name "python-urllib3") (version "1.26.15") (source (origin (method url-fetch) (uri (pypi-uri "urllib3" version)) (sha256 (base32 "01dkqv0rsjqyw4wrp6yj8h3bcnl7c678qkj845596vs7p4bqff4a")))) (build-system python-build-system) (arguments `(#:tests? #f)) (propagated-inputs (append ;; These 5 inputs are used to build urrlib3[secure] (list python-certifi) (if (member (%current-system) (package-transitive-supported-systems python-cryptography)) (list python-cryptography) '()) (list python-idna) (if (member (%current-system) (package-transitive-supported-systems python-pyopenssl)) (list python-pyopenssl) '()) (list python-pysocks))) (home-page "https://urllib3.readthedocs.io/") (synopsis "HTTP library with thread-safe connection pooling") (description "Urllib3 supports features left out of urllib and urllib2 libraries. It can reuse the same socket connection for multiple requests, it can POST files, supports url redirection and retries, and also gzip and deflate decoding.") (license license:expat))) (define-public python-urllib3-next (package (name "python-urllib3") (version "1.26.17") (source (origin (method url-fetch) (uri (pypi-uri "urllib3" version)) (sha256 (base32 "08fzhaf77kbjj5abpl9xag6fpfxkdp1k5s7sqd3ayacdq91a5mi4")))) (build-system python-build-system) (arguments `(#:tests? #f)) (propagated-inputs (append ;; These 5 inputs are used to build urrlib3[secure] (list python-certifi) (if (member (%current-system) (package-transitive-supported-systems python-cryptography)) (list python-cryptography) '()) (list python-idna) (if (member (%current-system) (package-transitive-supported-systems python-pyopenssl)) (list python-pyopenssl) '()) (list python-pysocks))) (home-page "https://urllib3.readthedocs.io/") (synopsis "HTTP library with thread-safe connection pooling") (description "Urllib3 supports features left out of urllib and urllib2 libraries. It can reuse the same socket connection for multiple requests, it can POST files, supports url redirection and retries, and also gzip and deflate decoding.") (license license:expat))) (define-public awscli (package ;; Note: updating awscli typically requires updating botocore as well. (name "awscli") (version "1.22.90") (source (origin (method url-fetch) (uri (pypi-uri name version)) (sha256 (base32 "0ky4ax4xh7s8w1l0hwc7w9ii8afvh9nib3kz09qhiqdinxzrlv54")))) (build-system python-build-system) (arguments ;; FIXME: The 'pypi' release does not contain tests. '(#:tests? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'use-recent-pyyaml (lambda _ (substitute* '("awscli.egg-info/requires.txt" "setup.cfg" "setup.py") (("<5.5") "<=6")))) (add-after 'unpack 'fix-reference-to-groff (lambda* (#:key inputs #:allow-other-keys) (substitute* "awscli/help.py" (("if not self._exists_on_path\\('groff'\\):") "") (("raise ExecutableNotFoundError\\('groff'\\)") "") (("cmdline = \\['groff'") (string-append "cmdline = ['" (search-input-file inputs "bin/groff") "'")))))))) (inputs (list groff python-colorama-for-awscli python-botocore python-s3transfer python-docutils-0.15 python-pyyaml python-rsa)) (home-page "https://aws.amazon.com/cli/") (synopsis "Command line client for AWS") (description "AWS CLI provides a unified command line interface to the Amazon Web Services (AWS) API.") (license license:asl2.0))) (define-public awscli-2 (package (inherit awscli) (name "awscli") (version "2.2.0") (source (origin (method url-fetch) (uri (pypi-uri (string-append name "v2") version)) (sha256 (base32 "0g1icsy2l4n540gnhliypy830dfp08hpfc3rk12dlxgc9v3ra4wl")))) (arguments ;; FIXME: The 'pypi' release does not contain tests. '(#:tests? #f)) (inputs (list python-importlib-resources python-executor)))) (define-public python-wsgiproxy2 (package (name "python-wsgiproxy2") (version "0.4.6") (source (origin (method url-fetch) (uri (pypi-uri "WSGIProxy2" version ".tar.gz")) (sha256 (base32 "16jch5nic0hia28lps3c678s9s9mjdq8n87igxncjg0rpi5adqnf")))) (build-system python-build-system) (native-inputs (list python-webtest)) (propagated-inputs (list python-requests python-six python-urllib3 python-webob)) (home-page "https://github.com/gawel/WSGIProxy2/") (synopsis "WSGI Proxy with various http client backends") (description "WSGI turns HTTP requests into WSGI function calls. WSGIProxy turns WSGI function calls into HTTP requests. It also includes code to sign requests and pass private data, and to spawn subprocesses to handle requests.") (license license:expat))) (define-public python-pastedeploy (package (name "python-pastedeploy") (version "2.1.1") (source (origin (method url-fetch) (uri (pypi-uri "PasteDeploy" version)) (sha256 (base32 "05s88qdjdwd9d9qs13fap7nqgxs7qs5qfzzjbrc5va13k2mxdskd")))) (build-system python-build-system) (arguments '(#:test-target "pytest")) (native-inputs (list python-pytest python-pytest-runner)) (home-page "https://pylonsproject.org/") (synopsis "Load, configure, and compose WSGI applications and servers") (description "This tool provides code to load WSGI applications and servers from URIs; these URIs can refer to Python Eggs for INI-style configuration files. Paste Script provides commands to serve applications based on this configuration file.") (license license:expat))) (define-public python-webtest (package (name "python-webtest") (version "2.0.35") (source (origin (method url-fetch) (uri (pypi-uri "WebTest" version)) (sha256 (base32 "11xhgdj251zkvz5w30fvspii08ki2vrpr1im9sph1wmlnasnihda")))) (build-system python-build-system) (arguments ;; Tests require python-pyquery, which creates a circular dependency. `(#:tests? #f)) (propagated-inputs (list python-waitress python-webob python-six python-beautifulsoup4)) (home-page "https://docs.pylonsproject.org/projects/webtest/") (synopsis "Helper to test WSGI applications") (description "Webtest allows you to test your Python web applications without starting an HTTP server. It supports anything that supports the minimum of WSGI.") (license license:expat))) (define-public python-flask (package (name "python-flask") (version "2.1.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask" version)) (sha256 (base32 "1j0rjly2yhbm566lq2s8543fs7fz86f77abps539djcfalzbvjd8")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "tests"))))))) (native-inputs (list python-pytest)) (propagated-inputs (list python-asgiref ;async extra python-click python-importlib-metadata python-itsdangerous python-jinja2 python-werkzeug)) (home-page "https://palletsprojects.com/p/flask/") (synopsis "Microframework based on Werkzeug, Jinja2 and good intentions") (description "Flask is a micro web framework based on the Werkzeug toolkit and Jinja2 template engine. It is called a micro framework because it does not presume or force a developer to use a particular tool or library.") (license license:bsd-3))) (define-public python-flask-compress (package (name "python-flask-compress") (version "1.13") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Compress" version)) (sha256 (base32 "178jzz6jxlxllcjqamzh5q7ahfh90m5cl1il9vmjs3xhz65z35pf")))) (build-system pyproject-build-system) (propagated-inputs (list python-brotli python-flask)) (native-inputs (list python-setuptools-scm)) (home-page "https://github.com/colour-science/flask-compress") (synopsis "Compress responses in a Flask app") (description "This package lets you compress Flask application responses and static files with gzip, deflate or brotli. Flask-Compress both adds the various headers required for a compressed response and compresses the response data.") (license license:expat))) (define-public python-flask-seasurf (package (name "python-flask-seasurf") (version "1.1.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask-SeaSurf" version)) (sha256 (base32 "1aaib4n27q0f2alp87mhv3f79vg7qckp71rphbd0mb39qw470lsl")))) (build-system pyproject-build-system) (arguments (list #:tests? #false)) ;there are none (propagated-inputs (list python-flask)) (home-page "https://github.com/maxcountryman/flask-seasurf/") (synopsis "CSRF extension for Flask") (description "SeaSurf is a Flask extension for preventing cross-site request forgery (CSRF). CSRF attacks are problematic because the mechanism they use is relatively easy to exploit. This extension attempts to aid you in securing your application from such attacks. This extension is based on the Django middleware.") (license license:bsd-3))) (define-public python-flask-wtf (package (name "python-flask-wtf") (version "1.0.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask-WTF" version)) (sha256 (base32 "1jd614662r6ifh4svs8zfwm4k8bal5z3n6pq607bas8gxrpmrzil")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest" "-vv")))))) (propagated-inputs (list python-flask python-itsdangerous python-wtforms)) (native-inputs (list python-pytest)) (home-page "https://github.com/lepture/flask-wtf") (synopsis "Simple integration of Flask and WTForms") (description "Flask-WTF integrates Flask and WTForms, including CSRF, file upload, and reCAPTCHA.") (license license:bsd-3))) (define-public python-flask-multistatic (package (name "python-flask-multistatic") (version "1.0") (source (origin (method url-fetch) (uri (pypi-uri "flask-multistatic" version)) (sha256 (base32 "0p4v50rwv64wcd0zlq7rzl4waprwr4hj19s3cgf1isywa7jcisgm")))) (build-system python-build-system) (propagated-inputs (list python-flask)) (home-page "https://pagure.io/flask-multistatic") (synopsis "Flask plugin to allow overriding static files") (description "@code{flask-multistatic} is a flask plugin that adds support for overriding static files.") (license license:gpl3+))) (define-public python-cookies (package (name "python-cookies") (version "2.2.1") (source (origin (method url-fetch) (uri (pypi-uri "cookies" version)) (sha256 (base32 "13pfndz8vbk4p2a44cfbjsypjarkrall71pgc97glk5fiiw9idnn")))) (build-system python-build-system) (arguments `(;; test are broken: https://gitlab.com/sashahart/cookies/issues/3 #:tests? #f)) (native-inputs (list python-pytest)) (synopsis "HTTP cookie parser and renderer") (description "A RFC 6265-compliant HTTP cookie parser and renderer in Python.") (home-page "https://gitlab.com/sashahart/cookies") (license license:expat))) (define-public python-responses (package (name "python-responses") (version "0.22.0") (source (origin (method url-fetch) (uri (pypi-uri "responses" version)) (sha256 (base32 "0bhhffwl0zqin4xc89nc97ynzr7l3j4b8rjqk9w9flnj2cmcnsir")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-v"))))))) (native-inputs (list python-pytest python-pytest-asyncio python-pytest-httpserver)) (propagated-inputs (list python-requests python-toml python-types-toml python-typing-extensions python-urllib3)) (home-page "https://github.com/getsentry/responses") (synopsis "Utility for mocking out the `requests` Python library") (description "A utility library for mocking out the `requests` Python library.") (license license:asl2.0))) (define-public python-grequests (package (name "python-grequests") (version "0.3.0") (source (origin (method url-fetch) (uri (pypi-uri "grequests" version)) (sha256 (base32 "1j9icncllbkv7x5719b20mx670c6q1jrdx1sakskkarvx3pc8h8g")))) (build-system python-build-system) (propagated-inputs (list python-gevent python-requests)) (native-inputs (list python-nose python-zope-interface python-zope-event)) (home-page "https://github.com/kennethreitz/grequests") (synopsis "Python library for asynchronous HTTP requests") (description "GRequests is a Python library that allows you to use @code{Requests} with @code{Gevent} to make asynchronous HTTP Requests easily") (license license:bsd-2))) (define-public python-gwebsockets (package (name "python-gwebsockets") (version "0.7") (source (origin (method url-fetch) (uri (pypi-uri "gwebsockets" version)) (sha256 (base32 "0kgq7wssz0mrhxdafkfc9prj0qjv9z0lyivyqvjvjnnypg54di7m")))) (build-system python-build-system) (propagated-inputs (list python-pygobject)) (home-page "https://github.com/sugarlabs/gwebsockets") (synopsis "GLib based websockets server") (description "This package provides a websocket server written in Python. It uses GIO for network communication and hence it easily integrates with the GLib mainloop.") (license license:asl2.0))) (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") (version "2.0.9") (source (origin (method url-fetch) (uri (pypi-uri "geventhttpclient" version)) (sha256 (base32 "04qmcc7qpnif70ph61339dcld4g107fkhpa0gdmbs8z98v9kkg4a")) (modules '((guix build utils))) (snippet '(begin ;; Delete pre-compiled files. (for-each delete-file (find-files "src/geventhttpclient" ".*\\.pyc")))))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'delete-network-tests (lambda _ (delete-file "src/geventhttpclient/tests/test_client.py"))) (add-after 'unpack 'fix-compatibility-issue ;; See: https://github.com/gwik/geventhttpclient/issues/137. (lambda _ (substitute* "src/geventhttpclient/tests/test_ssl.py" ((".*sock.last_seen_sni = None.*") "")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "src/geventhttpclient/tests" "-v" ;; Append the test modules to sys.path to avoid ;; namespace conflict which breaks SSL tests. "--import-mode=append"))))))) (native-inputs (list nss-certs-for-test python-dpkt python-pytest)) (propagated-inputs (list python-brotli python-certifi python-gevent python-six python-urllib3)) (home-page "https://github.com/geventhttpclient/geventhttpclient") (synopsis "HTTP client library for gevent") (description "@code{python-geventhttpclient} is a high performance, concurrent HTTP client library for python using @code{gevent}.") (license license:expat))) (define-public python-requests-oauthlib (package (name "python-requests-oauthlib") (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "requests-oauthlib" version)) (sha256 (base32 "0mrglgcvq7k48pf27s4gifdk0za8xmgpf55jy15yjj471qrk6rdx")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases ;; removes tests that require network access (add-before 'check 'pre-check (lambda _ (delete-file "tests/test_core.py") #t))))) (native-inputs (list python-pyjwt python-requests-mock python-mock)) (propagated-inputs (list python-oauthlib python-requests)) (home-page "https://github.com/requests/requests-oauthlib") (synopsis "OAuthlib authentication support for Requests") (description "Requests-OAuthlib uses the Python Requests and OAuthlib libraries to provide an easy-to-use Python interface for building OAuth1 and OAuth2 clients.") (license license:isc))) (define-public python-url (package (name "python-url") (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "url" version)) (sha256 (base32 "0v879yadcz9qxfl41ak6wkga1kimp9cflla9ddz03hjjvgkqy5ki")))) (build-system python-build-system) (propagated-inputs (list python-publicsuffix)) (native-inputs (list python-coverage python-nose)) (arguments `(#:tests? #f)) ; FIXME: tests fail with "ImportError: No module named 'tests'" (home-page "https://github.com/seomoz/url-py") (synopsis "URL Parsing") (description "Library for parsing urls.") (license license:expat))) (define-public python-cachecontrol (package (name "python-cachecontrol") (version "0.12.10") (source (origin (method git-fetch) ;; Pypi does not have tests. (uri (git-reference (url "https://github.com/ionrock/cachecontrol") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0fviacb13h72l5c77p35lgr6kvlidfdb9xsicg3v6lblmp9cn2ws")))) (build-system python-build-system) (arguments ;; Versions > 0.11.6 depend on CherryPy for testing. ;; It's too much work to package CherryPy for now. `(#:tests? #f)) (propagated-inputs (list python-requests python-msgpack python-lockfile)) (home-page "https://github.com/ionrock/cachecontrol") (synopsis "The httplib2 caching algorithms for use with requests") (description "CacheControl is a port of the caching algorithms in @code{httplib2} for use with @code{requests} session objects.") (license license:asl2.0))) (define-public python-cachecontrol-0.11 (package (inherit python-cachecontrol) (name "python-cachecontrol") (version "0.11.7") (source (origin (method url-fetch) (uri (pypi-uri "CacheControl" version)) (sha256 (base32 "07jsfhlbcwgqg6ayz8nznzaqg5rmxqblbzxz1qvg5wc44pcjjy4g")))))) (define-public python-betamax (package (name "python-betamax") (version "0.8.1") (source (origin (method url-fetch) (uri (pypi-uri "betamax" version)) (sha256 (base32 "1hki1c2vs7adq7zr56wi6i5bhrkia4s2ywpv2c98ibnczz709w2v")))) (build-system python-build-system) (arguments '(;; Many tests fail because they require networking. #:tests? #f)) (propagated-inputs (list python-requests)) (home-page "https://github.com/sigmavirus24/betamax") (synopsis "Record HTTP interactions with python-requests") (description "Betamax will record your test suite's HTTP interactions and replay them during future tests. It is designed to work with python-requests.") (license license:expat))) (define-public python-betamax-matchers (package (name "python-betamax-matchers") (version "0.4.0") (source (origin (method url-fetch) (uri (pypi-uri "betamax-matchers" version)) (sha256 (base32 "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43")))) (build-system python-build-system) (propagated-inputs (list python-betamax python-requests-toolbelt)) (home-page "https://github.com/sigmavirus24/betamax_matchers") (synopsis "VCR imitation for python-requests") (description "@code{betamax-matchers} provides a set of Matchers for Betamax.") (license license:asl2.0))) (define-public python-betamax-serializers (package (name "python-betamax-serializers") (version "0.2.1") (source (origin (method url-fetch) (uri (pypi-uri "betamax-serializers" version)) (sha256 (base32 "0ja9isbjmzzhxdj69s0kdsvw8nkp073w6an6a4liy5vk3fdl2p1l")))) (build-system python-build-system) (propagated-inputs (list python-betamax python-pyyaml)) (synopsis "Set of third-party serializers for Betamax") (description "Betamax-Serializers are an experimental set of Serializers for Betamax that may possibly end up in the main package.") (home-page "https://gitlab.com/betamax/serializers") (license license:asl2.0))) (define-public python-s3transfer (package (name "python-s3transfer") (version "0.5.0") (source (origin (method url-fetch) (uri (pypi-uri "s3transfer" version)) (sha256 (base32 "0k6sc956yrrv9b4laa0r79jhxajpyxr21jcd1ka8m1n53lz85vah")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; Some of the 'integration' tests require network access or ;; login credentials. (invoke "nosetests" "--exclude=integration"))))))) (native-inputs (list python-docutils python-mock python-nose)) (propagated-inputs (list python-botocore python-urllib3)) (synopsis "Amazon S3 Transfer Manager") (description "S3transfer is a Python library for managing Amazon S3 transfers.") (home-page "https://github.com/boto/s3transfer") (license license:asl2.0))) (define-public python-flask-jwt (package (name "python-flask-jwt") (version "0.3.2") (source (origin (method url-fetch) (uri (pypi-uri "Flask-JWT" version)) (sha256 (base32 "1bfh7cr0sf65rn4h1q67472y6ml9s8c4k0xxfhrwvwg0plpngh29")))) (build-system pyproject-build-system) (arguments (list #:phases '(modify-phases %standard-phases (add-after 'unpack 'compatibility (lambda _ (substitute* "setup.cfg" (("\\[pytest\\]") "[tool:pytest]")) (substitute* "requirements.txt" (("PyJWT>=1.4.0,<1.5.0") "PyJWT>=2.0.0")) (substitute* '("tests/test_jwt.py" "flask_jwt/__init__.py") (("access_token.decode\\('utf-8'\\)") "access_token"))))))) (propagated-inputs (list python-flask python-pyjwt)) (native-inputs (list python-pytest)) (home-page "https://github.com/mattupstate/flask-jwt") (synopsis "JWT token authentication for Flask apps") (description "This package implements JWT token authentication for Flask apps.") (license license:expat))) (define-public python-flask-restful (package (name "python-flask-restful") (version "0.3.9") (source (origin (method url-fetch) (uri (pypi-uri "Flask-RESTful" version)) (sha256 (base32 "0gm5dz088v3d2k1dkcp9b3nnqpkk0fp2jly870hijj2xhc5nbv6c")))) (build-system pyproject-build-system) (arguments ;; This test fails because '/' is not 'http://localhost/'. (list #:test-flags '(list "-k" "not test_redirect"))) (propagated-inputs (list python-aniso8601 python-flask python-pytz)) (native-inputs (list python-blinker python-mock python-pytest)) (home-page "https://www.github.com/flask-restful/flask-restful/") (synopsis "Flask module for creating REST APIs") (description "This package contains a Flask module for creating REST APIs.") (license license:bsd-3))) (define-public python-flask-basicauth (package (name "python-flask-basicauth") (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-BasicAuth" version)) (sha256 (base32 "1zq1spkjr4sjdnalpp8wl242kdqyk6fhbnhr8hi4r4f0km4bspnz")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'fix-imports (lambda _ (substitute* '("docs/index.rst" "docs/conf.py" "flask_basicauth.py" "test_basicauth.py") (("flask\\.ext\\.basicauth") "flask_basicauth")) #t))))) (propagated-inputs (list python-flask)) (home-page "https://github.com/jpvanhal/flask-basicauth") (synopsis "HTTP basic access authentication for Flask") (description "This package provides HTTP basic access authentication for Flask.") (license license:bsd-3))) (define-public python-flask-htpasswd (package (name "python-flask-htpasswd") (version "0.3.1") (source (origin (method url-fetch) (uri (pypi-uri "flask-htpasswd" version)) (sha256 (base32 "14q1y1y9i9bhabdnwd25jqzc4ljli23smxfyyh8abxz1vq93pxra")))) (build-system python-build-system) (propagated-inputs (list python-flask python-itsdangerous python-passlib python-tox)) (home-page "https://github.com/carsongee/flask-htpasswd") (synopsis "Basic authentication via htpasswd files in Flask applications") (description "This package provides Basic authentication via @file{htpasswd} files and access_token authentication in Flask applications.") (license license:bsd-3))) (define-public python-flask-sqlalchemy (package (name "python-flask-sqlalchemy") (version "2.5.1") (source (origin (method url-fetch) (uri (pypi-uri "Flask-SQLAlchemy" version)) (sha256 (base32 "04jrx4sjrz1b20j38qk4qin975xwz30krzq59rfv3b3w7ss49nib")))) (build-system python-build-system) (propagated-inputs (list python-flask python-sqlalchemy)) (home-page "https://github.com/mitsuhiko/flask-sqlalchemy") (synopsis "Module adding SQLAlchemy support to your Flask application") (description "This package adds SQLAlchemy support to your Flask application.") (license license:bsd-3))) (define-public python-flask-restful-swagger (package (name "python-flask-restful-swagger") (version "0.20.1") (source (origin (method url-fetch) (uri (pypi-uri "flask-restful-swagger" version)) (sha256 (base32 "1p66f98b5zpypnnz56pxpbirchqj6aniw6qyrp8h572l0dn9xlvq")))) (build-system python-build-system) (arguments '(#:tests? #f)) ;no tests (propagated-inputs (list python-flask-restful python-six)) (home-page "https://github.com/rantav/flask-restful-swagger") (synopsis "Extract Swagger specs from Flask-Restful projects") (description "This package lets you extract Swagger API documentation specs from your Flask-Restful projects.") (license license:expat))) (define-public python-htmlmin (package (name "python-htmlmin") (version "0.1.12") (source (origin (method url-fetch) (uri (pypi-uri "htmlmin" version)) (sha256 (base32 "0y51xhabw6x8jk8k93xl8vznshpz3jb6l28075r5sjip613fzhah")))) (arguments `(#:tests? #f)) ; no tests (build-system python-build-system) (home-page "https://htmlmin.readthedocs.org/en/latest/") (synopsis "HTML minifier") (description "@code{htmlmin} is an HTML minifier that just works. It comes with safe defaults and easily configurable options.") (license license:bsd-3))) (define-public python-flask-htmlmin (package (name "python-flask-htmlmin") (version "1.2") (source (origin (method url-fetch) (uri (pypi-uri "Flask-HTMLmin" version)) (sha256 (base32 "1n6zlq72kakkw0z2jpq6nh74lfsmxybm4g053pwhc14fbr809348")))) (propagated-inputs (list python-flask python-htmlmin)) (build-system python-build-system) (home-page "https://github.com/hamidfzm/Flask-HTMLmin") (synopsis "HTML response minifier for Flask") (description "Minify @code{text/html} MIME type responses when using @code{Flask}.") (license license:bsd-3))) (define-public python-jsmin (package (name "python-jsmin") (version "3.0.1") (source (origin (method url-fetch) (uri (pypi-uri "jsmin" version)) (sha256 (base32 "1z1brjsvni0260bypldkl8a05sgp0qk18x560zl44igr3q99m5f0")))) (build-system python-build-system) (home-page "https://github.com/tikitu/jsmin/") (synopsis "Python JavaScript minifier") (description "@code{jsmin} is a JavaScript minifier, usable from both Python code and on the command line.") (license license:expat))) (define-public python-flask-login (package (name "python-flask-login") (version "0.6.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/maxcountryman/flask-login") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "12yw01ccgjn9c88cbkrd6k1ykjxd8fxip2b1isvxjirphnlqhn9g")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" "-vv" "-c" "/dev/null"))))))) (propagated-inputs (list python-flask)) (native-inputs ;; For tests. (list python-blinker python-mock python-pytest python-semantic-version python-werkzeug)) (home-page "https://github.com/maxcountryman/flask-login") (synopsis "User session management for Flask") (description "@code{Flask-Login} provides user session management for Flask. It handles the common tasks of logging in, logging out, and remembering your users' sessions over extended periods of time.") (license license:expat))) (define-public python-oauth2client (package (name "python-oauth2client") (version "4.0.0") (source (origin (method url-fetch) (uri (pypi-uri "oauth2client" version)) (sha256 (base32 "1irqqap2zibysf8dba8sklfqikia579srd0phm5n754ni0h59gl0")))) (build-system python-build-system) (arguments `(#:tests? #f)) (propagated-inputs (list python-httplib2 python-pyasn1 python-pyasn1-modules python-pyparsing python-rsa python-six)) (home-page "https://github.com/google/oauth2client/") (synopsis "OAuth 2.0 client library") (description "@code{python-oauth2client} provides an OAuth 2.0 client library for Python") (license license:asl2.0))) (define-public python-flask-oidc (package (name "python-flask-oidc") (version "1.4.0") (source (origin (method url-fetch) (uri (pypi-uri "flask-oidc" version)) (sha256 (base32 "0klgwpn2iy5y7011xh2c8zkryxdwkpxh7qjs3hp5cynl748ia4hc")))) (build-system python-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "nosetests"))))))) (propagated-inputs (list python-flask python-itsdangerous python-oauth2client python-six)) (native-inputs (list python-nose python-mock)) (home-page "https://github.com/puiterwijk/flask-oidc") (synopsis "OpenID Connect extension for Flask") (description "@code{python-flask-oidc} provides an OpenID Connect extension for Flask.") (license license:bsd-2))) (define-public python-webassets (package (name "python-webassets") (version "2.0") (source (origin (method url-fetch) (uri (pypi-uri "webassets" version)) (sha256 (base32 "1kc1042jydgk54xpgcp0r1ib4gys91nhy285jzfcxj3pfqrk4w8n")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-before 'check 'adjust-tests (lambda _ ;; Fix for Python 3.9 compatibility. (substitute* "tests/test_script.py" (("self\\.t\\.isAlive") "self.t.is_alive")) ;; This test requires 'postcss' and 'babel' which are ;; not yet available in Guix. (delete-file "tests/test_filters.py"))) (replace 'check (lambda _ (invoke "pytest" "-vv")))))) (native-inputs (list python-jinja2 python-mock python-nose python-pytest)) (home-page "https://github.com/miracle2k/webassets") (synopsis "Media asset management") (description "Merges, minifies and compresses Javascript and CSS files, supporting a variety of different filters, including YUI, jsmin, jspacker or CSS tidy. Also supports URL rewriting in CSS files.") (license license:bsd-2))) (define-public python-cssmin (package (name "python-cssmin") (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "cssmin" version)) (sha256 (base32 "1dk723nfm2yf8cp4pj785giqlwv42l0kj8rk40kczvq1hk6g04p0")))) (build-system python-build-system) (home-page "https://github.com/zacharyvoase/cssmin") (synopsis "Python port of the YUI CSS Compressor") (description "Python port of the YUI CSS Compressor.") (license (list license:expat license:bsd-3)))) (define-public python-elasticsearch (package (name "python-elasticsearch") (version "7.13.4") (source (origin (method url-fetch) (uri (pypi-uri "elasticsearch" version)) (sha256 (base32 "1q38w9nh2j2yi82d8rhzb57597l4lq5zx7xzfg45xf7ffrgsipaj")))) (build-system python-build-system) (propagated-inputs (list python-certifi python-urllib3)) (arguments ;; tests require the test_elasticsearch module but it is not distributed. `(#:tests? #f)) (home-page "https://github.com/elastic/elasticsearch-py") (synopsis "Low-level client for Elasticsearch") (description "Official low-level client for Elasticsearch. Its goal is to provide common ground for all Elasticsearch-related code in Python; because of this it tries to be opinion-free and very extendable.") (license license:expat))) (define-public python-engineio (package (name "python-engineio") (version "4.0.1") (source (origin (method url-fetch) (uri (pypi-uri "python-engineio" version)) (sha256 (base32 "0xqkjjxbxakz9fd7v94rkr2r5r9nrkap2c3gf3abbd0j6ld5qmxv")))) (build-system python-build-system) (propagated-inputs (list python-aiohttp python-requests python-websocket-client)) (arguments '(#:tests? #f)) ; Tests not included in release tarball. (home-page "https://github.com/miguelgrinberg/python-engineio/") (synopsis "Engine.IO server") (description "Python implementation of the Engine.IO realtime client and server.") (license license:expat))) (define-public epicyon ;; The software is still in development but stopped making official releases ;; after 1.3.0. (let ((revision "0") (commit "1b984f9a30d1e83c068bab357b3a08b409634341")) (package (name "epicyon") (version (git-version "1.3.0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/bashrc2/epicyon") (commit commit))) (file-name (string-append name "-" version)) (sha256 (base32 "0ki2290rsc432cba30pmiv63iakdnz15ayy05sj9xgj9brjmxdqi")))) (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-requirements (lambda _ (substitute* '("setup.cfg") ;; Loosen version requirements. (("^(\\s+(cryptography|idna|pillow))([^\\S].*)?\n$" _ dep) (string-append dep "\n")) ;; Fix name: `socks' -> `python-socks'. (("^(\\s+)socks([^\\S].*)?\n$" _ ind) (string-append ind "python-socks\n"))))) (add-after 'unpack 'add-missing-package-data (lambda _ (substitute* '("setup.cfg") (("^(\\s)+\\*\\.txt\n$" all ind) (string-append ;; Epicyon's setup.cfg is outdated and the ;; `[options.package_data]' section doesn't list some ;; necessary data files/directories. We add the ;; required missing ones here while omitting the ones ;; not used by the daemon (`README*` files, ;; directories `architecture/', `deploy/', `gemini/' ;; and `scripts/', etc.). all ind "default_about.md\n" ind "default_tos.md\n" ind "cwlists/**\n" ind "data/**\n" ind "defaultwelcome/**\n" ind "manual/**\n" ind "ontology/**\n" ind "specification/**\n"))))) (add-after 'unpack 'patch-program-names (lambda* (#:key inputs #:allow-other-keys) (let ((exiftool (assoc-ref inputs "perl-image-exiftool")) (imagemagick (assoc-ref inputs "imagemagick"))) (substitute* '("media.py" "person.py") (("'(/usr/bin/)?(exiftool|convert|mogrify)" _ _ tool) (format #f "'~a/bin/~a" (if (string= tool "exiftool") exiftool imagemagick) tool)))))) (add-after 'unpack 'add-epicyon-entry-point (lambda _ (define (append-to-file filename text) (let ((port (open-file filename "a"))) (display text port) (close-port port))) (append-to-file "setup.cfg" " [options.entry_points] console_scripts = epicyon = epicyon:_guix_main ") (substitute* "epicyon.py" (("^if __name__ == .__main__.:\n$") "def _guix_main():\n")) ;; Some of the tests check if there are no unused ;; functions, we need _guix_main() to be used somewhere ;; besides the entry point. (append-to-file "epicyon.py" " if __name__ == '__main__': _guix_main() "))) (add-after 'unpack 'skip-networked-test-during-build (lambda _ (substitute* "tests.py" (("^(\\s+)print\\(.test_site_is_active.\\)\n$" all ind) (string-append all ind "if os.environ['HOME'] == '/homeless-shelter':\n" ind ind "print('...skipped...')\n" ind ind "return\n"))))) (add-after 'install 'remove-useless-scripts ;; Those are used for hosting through tor or i2p under a ;; systemd-based distro. (lambda _ (for-each (lambda (script) (delete-file (format #f "~a/bin/~a" #$output script))) '("i2p" "onion")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke (format #f "~a/bin/epicyon" #$output) "--tests"))))))) (inputs (list imagemagick perl-image-exiftool python-cryptography python-dateutil python-django-timezone-field python-idna python-numpy python-pillow python-pypng python-pyqrcode python-requests python-socks)) (home-page "https://github.com/bashrc2/epicyon") (synopsis "A modern ActivityPub compliant server implementing both S2S and C2S protocols.") (description "Epicyon is a Fediverse server suitable for self-hosting a small number of accounts on low power systems. Key features: @itemize @item Open standards: HTML, CSS, ActivityPub S2S and C2S, RSS, CalDAV. @item Supports common web browsers and shell browsers. @item Will not drain your mobile or laptop battery. @item Customisable themes. It doesn't have to look bland. @item Emoji reactions. @item Geospatial hashtags. @item Does not require much RAM, either on server or client. @item Suitable for installation on single board computers. @item No timeline algorithms. @item No javascript. @item No database. Data stored as ordinary files. @item No fashionable web frameworks. \"Boring by design\". @item No blockchain garbage. @item Written in Python, with few dependencies. @item AGPL license, which big tech hates. @end itemize ") (license license:agpl3+)))) (define-public python-flask-migrate (package (name "python-flask-migrate") (version "3.1.0") (home-page "https://github.com/miguelgrinberg/flask-migrate/") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0zj7qpknvlhrh4fsp5sx4fwyx3sp41ynclka992zympm3xym9zyq")))) (build-system python-build-system) (propagated-inputs (list python-flask python-alembic python-flask-sqlalchemy)) (synopsis "SQLAlchemy database migrations for Flask programs using Alembic") (description "This package contains SQLAlchemy database migration tools for Flask programs that are using @code{python-alembic}.") (license license:expat))) (define-public python-genshi (package (name "python-genshi") (version "0.7.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/edgewall/genshi") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "06q14mn5n56rdnqvsbbjixygilblgg85fzw029n96qf6f1rvldiq")))) (propagated-inputs (list python-six)) (build-system python-build-system) (home-page "https://genshi.edgewall.org/") (synopsis "Toolkit for generation of output for the web") (description "Genshi is a Python library that provides an integrated set of components for parsing, generating, and processing HTML, XML or other textual content for output generation on the web.") (license license:bsd-3))) (define-public python-flask-principal (package (name "python-flask-principal") (version "0.4.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Principal" version)) (sha256 (base32 "0lwlr5smz8vfm5h9a9i7da3q1c24xqc6vm9jdywdpgxfbi5i7mpm")))) (build-system python-build-system) (propagated-inputs (list python-blinker)) (native-inputs (list python-flask python-nose)) (home-page "https://pythonhosted.org/Flask-Principal/") (synopsis "Identity management for Flask") (description "@code{flask_principal} is a identity management library for Flask. It supports managing both authentication and authorization data in a thread-local variable.") (license license:expat))) (define-public python-flask-httpauth (package (name "python-flask-httpauth") (version "3.2.3") (source (origin (method url-fetch) (uri (pypi-uri "Flask-HTTPAuth" version)) (sha256 (base32 "13gff5w1mqpzm5nccyg02v3ifb9ifqh5k866cssjhghhg6msfjsz")))) (build-system python-build-system) (native-inputs (list python-flask)) (home-page "https://github.com/miguelgrinberg/flask-httpauth/") (synopsis "Basic and Digest HTTP authentication for Flask routes") (description "@code{flask_httpauth} provides Basic and Digest HTTP authentication for Flask routes.") (license license:expat))) (define-public python-uritemplate (package (name "python-uritemplate") (version "4.1.1") (source (origin (method url-fetch) (uri (pypi-uri "uritemplate" version)) (sha256 (base32 "1w14a775d92mx9pdhb5zimifpfr2lfcn0vfdpjagcy9vbkyfsij3")))) (build-system python-build-system) (home-page "https://uritemplate.readthedocs.org") (synopsis "Library to deal with URI Templates") (description "@code{uritemplate} provides Python library to deal with URI Templates.") ;; The software is made available under the terms of *either* of the ;; licenses found in LICENSE.APACHE or LICENSE.BSD. Contributions ;; are made under *both* licenses (excerpt from the LICENSE file). (license (list license:bsd-2 license:asl2.0)))) (define-public python-uritemplate-3 (package (inherit python-uritemplate) (name "python-uritemplate") (version "3.0.1") (source (origin (method url-fetch) (uri (pypi-uri "uritemplate" version)) (sha256 (base32 "1bkwmgr0ia9gcn4bszs2xlvml79f0bi2s4a87xg22ky9rq8avy2s")))))) (define-public python-publicsuffix (package (name "python-publicsuffix") (version "1.1.0") (source (origin (method url-fetch) (uri (pypi-uri "publicsuffix" version)) (sha256 (base32 "1adx520249z2cy7ykwjr1k190mn2888wqn9jf8qm27ly4qymjxxf")))) (build-system python-build-system) (arguments `(#:tests? #f)) ; tests use the internet (home-page "https://www.tablix.org/~avian/git/publicsuffix.git") (synopsis "Get suffix for a domain name") (description "Get a public suffix for a domain name using the Public Suffix List.") (license license:expat))) (define-public python-publicsuffix2 (package (name "python-publicsuffix2") (version "2.20191221") (source (origin (method url-fetch) (uri (pypi-uri "publicsuffix2" version)) (sha256 (base32 "0yzysvfj1najr1mb4pcqrbmjir3xpb69rlffln95a3cdm8qwry00")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'ignore-maintainer-inputs (lambda _ ;; Comment out a demand for python-requests, which is used only by ;; the unused ‘update_psl’ helper command. (substitute* "setup.py" (("'requests " match) (format #f "# ~a" match))) #t))) #:tests? #f)) ; the test suite requires network access (home-page "https://github.com/pombredanne/python-publicsuffix2") (synopsis "Get a public suffix for a domain name using the Public Suffix List") (description "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package.") (license (list license:expat license:mpl2.0)))) (define-public python-werkzeug (package (name "python-werkzeug") (version "2.0.2") (source (origin (method url-fetch) (uri (pypi-uri "Werkzeug" version)) (sha256 (base32 "16nvv9dh37ssf5pkny9yj2li0n6wyzsygh8a9i86r3gfipybcaxa")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (invoke "python" "-m" "pytest"