~ruther/guix-local

20c814174620558bc2d26fd073a1a91bbf1af04a — Nicolas Graves 1 year, 4 months ago 0165b28
gnu: python-vcrpy: Update to 7.0.0.

* gnu/packages/python-check.scm (python-vcrpy): Update to 7.0.0.
[native-inputs]: Remove python-flask, python-ipaddress, python-mock.
Add python-aiohttp, python-boto3, python-httpx, python-pytest-aiohttp,
python-pytest-asyncio, python-requests, python-tornado,
python-werkzeug.
[propagated-inputs]: Remove python-six.
1 files changed, 11 insertions(+), 10 deletions(-)

M gnu/packages/python-check.scm
M gnu/packages/python-check.scm => gnu/packages/python-check.scm +11 -10
@@ 3314,13 3314,13 @@ attachments).
(define-public python-vcrpy
  (package
    (name "python-vcrpy")
    (version "6.0.2")
    (version "7.0.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "vcrpy" version))
       (sha256
        (base32 "02fwmmc33qqybzbj1lvdz458g1fffm5cgnqihj4larw4268kvqc8"))))
        (base32 "0l1sdfc51024jclqv9104nagpirxx8w0gcn5h0bdxv950jnr2qqp"))))
    (build-system pyproject-build-system)
    (arguments
     (list


@@ 3333,22 3333,23 @@ attachments).
                          "test_testcase_playback")
                    " and not "))))
    (native-inputs
     (list nss-certs-for-test
           python-flask
     (list python-aiohttp
           python-boto3
           python-httplib2
           python-ipaddress
           python-mock
           python-httpx
           python-pytest
           python-pytest-cov
           python-pytest-aiohttp
           python-pytest-asyncio
           python-pytest-httpbin
           python-requests
           python-setuptools
           python-tornado
           python-urllib3
           python-werkzeug
           python-wheel))
    (propagated-inputs
     (list python-pyyaml
           python-six
           python-wrapt
           python-yarl))
     (list python-pyyaml python-wrapt python-yarl))
    (home-page "https://github.com/kevin1024/vcrpy")
    (synopsis "Automatically mock your HTTP interactions")
    (description