From unknown Sat Aug 16 18:38:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39917] [PATCH] gnu: Add python-pytest-vcr. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 04 Mar 2020 19:47:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 39917 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39917@debbugs.gnu.org Cc: Efraim Flashner X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.158335121924349 (code B ref -1); Wed, 04 Mar 2020 19:47:02 +0000 Received: (at submit) by debbugs.gnu.org; 4 Mar 2020 19:46:59 +0000 Received: from localhost ([127.0.0.1]:41873 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9Zyn-0006Ka-OJ for submit@debbugs.gnu.org; Wed, 04 Mar 2020 14:46:59 -0500 Received: from lists.gnu.org ([209.51.188.17]:32821) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9Zyj-0006KP-8F for submit@debbugs.gnu.org; Wed, 04 Mar 2020 14:46:53 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:48094) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j9Zyh-00019n-T6 for guix-patches@gnu.org; Wed, 04 Mar 2020 14:46:49 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j9Zyg-00033Q-Od for guix-patches@gnu.org; Wed, 04 Mar 2020 14:46:47 -0500 Received: from flashner.co.il ([178.62.234.194]:56808) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j9Zyg-00032j-IM for guix-patches@gnu.org; Wed, 04 Mar 2020 14:46:46 -0500 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id B2A11400B5; Wed, 4 Mar 2020 19:46:45 +0000 (UTC) From: Efraim Flashner Date: Wed, 4 Mar 2020 21:46:14 +0200 Message-Id: <20200304194614.11436-1-efraim@flashner.co.il> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 178.62.234.194 X-Spam-Score: 0.3 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) * gnu/packages/python-check.scm (python-pytest-vcr): New variable. --- gnu/packages/python-check.scm | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.sc= m index a69619b96a..70a5b1e452 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2019 Ricardo Wurmus ;;; Copyright =C2=A9 2019 Tobias Geerinckx-Rice -;;; Copyright =C2=A9 2019 Efraim Flashner +;;; Copyright =C2=A9 2019, 2020 Efraim Flashner ;;; Copyright =C2=A9 2019 Maxim Cournoyer ;;; Copyright =C2=A9 2019 Hartmut Goebel ;;; Copyright =C2=A9 2020 Julien Lepiller @@ -30,6 +30,7 @@ #:use-module (guix utils) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) + #:use-module (guix git-download) #:use-module (guix download) #:use-module (guix build-system python)) =20 @@ -109,6 +110,37 @@ detect the absence of a cassette file and once again= record all HTTP interactions, which will update them to correspond to the new API.") (license license:expat))) =20 +(define-public python-pytest-vcr + (package + (name "python-pytest-vcr") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ktosiek/pytest-vcr") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1i6fin91mklvbi8jzfiswvwf1m91f43smpj36a17xrzk4gisfs6i")))) + (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" "tests/")))))) + (propagated-inputs + `(("python-pytest" ,python-pytest) + ("python-vcrpy" ,python-vcrpy))) + (home-page "https://github.com/ktosiek/pytest-vcr") + (synopsis "Plugin for managing VCR.py cassettes") + (description + "Plugin for managing VCR.py cassettes.") + (license license:expat))) + (define-public python-pytest-checkdocs (package (name "python-pytest-checkdocs") --=20 2.25.1 From unknown Sat Aug 16 18:38:44 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Efraim Flashner Subject: bug#39917: closed (Re: bug#39917: Acknowledgement ([PATCH] gnu: Add python-pytest-vcr.)) Message-ID: References: <20200315071326.GE927@E5400> <20200304194614.11436-1-efraim@flashner.co.il> X-Gnu-PR-Message: they-closed 39917 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 39917@debbugs.gnu.org Date: Sun, 15 Mar 2020 07:15:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1584256502-3097-1" This is a multi-part message in MIME format... ------------=_1584256502-3097-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #39917: [PATCH] gnu: Add python-pytest-vcr. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 39917@debbugs.gnu.org. --=20 39917: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D39917 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1584256502-3097-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 39917-done) by debbugs.gnu.org; 15 Mar 2020 07:14:05 +0000 Received: from localhost ([127.0.0.1]:34209 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jDNTI-0000mV-Rv for submit@debbugs.gnu.org; Sun, 15 Mar 2020 03:14:05 -0400 Received: from flashner.co.il ([178.62.234.194]:54016) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jDNTH-0000lv-3l for 39917-done@debbugs.gnu.org; Sun, 15 Mar 2020 03:14:03 -0400 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id 11597400E5 for <39917-done@debbugs.gnu.org>; Sun, 15 Mar 2020 07:13:56 +0000 (UTC) Date: Sun, 15 Mar 2020 09:13:26 +0200 From: Efraim Flashner To: 39917-done@debbugs.gnu.org Subject: Re: bug#39917: Acknowledgement ([PATCH] gnu: Add python-pytest-vcr.) Message-ID: <20200315071326.GE927@E5400> References: <20200304194614.11436-1-efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="jTMWTj4UTAEmbWeb" Content-Disposition: inline In-Reply-To: X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 39917-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --jTMWTj4UTAEmbWeb Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Patch pushed --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --jTMWTj4UTAEmbWeb Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl5t1ZIACgkQQarn3Mo9 g1E1Sg/+N9xMdnYv8JIWM2hJDPZp5dDeBtNmsbok3L9RxKFx/bDwI0tlObU9qXK+ AggVau+mU0Oa6AdbUkexN4lnu/gvNTrAuWth/tbP9q80LAkHcPadai1fCISMI3Zy pYW6KTwtQl0r+F0rBSs0MybRWZL0TPaSWQcnBd6GR+2P8gCP08B2TwCVbb25v+9v I6fXL5UxXGxaydk+OfrD2FY7kTyX8HX52Z3ysJz3cXoFeXGqB79zQQP6XCT5zHI3 wdqopTAF7Q0LM8zPLxvXb7WzqKugOFT7k2wFNWtE/cRy770ihIyis2UxRSLN1k+U orp7MZXiVH8kZq2eaO/Ztx/jjgOR5nPvqwu8+N8ceT2oEC7ZZQcrJx4f8YR7cCfk 8aQHTQyO+hcGAKYswpHxXMNMUuPwDMRwuE5Cx6g+aL7L8G/TXtpffgGB7XMCGTel dRkV66YFCwgf+vXYtLvoNjDTR+AMnuwXrJ6p7gz4E8rTmSMs6oZGmCq1ObxHoshn mPH/7BxspDl+XcDkZSVZXfrgBjyOiQqdbzsztHA8Lwv8lEJ6oy3Ypk2NkzvBz5fK kYPYJy+W0o4HtgFsvtvABlZTwOXn+hTESLXZYxf0Ga2F57HziSVZtMQJE07sU7w4 FJU1zqyzheh5XwCm33XduAU/Ow1sTsn5OVy7Io3TRGTRYHQaaiU= =7PJL -----END PGP SIGNATURE----- --jTMWTj4UTAEmbWeb-- ------------=_1584256502-3097-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 4 Mar 2020 19:46:59 +0000 Received: from localhost ([127.0.0.1]:41873 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9Zyn-0006Ka-OJ for submit@debbugs.gnu.org; Wed, 04 Mar 2020 14:46:59 -0500 Received: from lists.gnu.org ([209.51.188.17]:32821) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9Zyj-0006KP-8F for submit@debbugs.gnu.org; Wed, 04 Mar 2020 14:46:53 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:48094) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j9Zyh-00019n-T6 for guix-patches@gnu.org; Wed, 04 Mar 2020 14:46:49 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j9Zyg-00033Q-Od for guix-patches@gnu.org; Wed, 04 Mar 2020 14:46:47 -0500 Received: from flashner.co.il ([178.62.234.194]:56808) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j9Zyg-00032j-IM for guix-patches@gnu.org; Wed, 04 Mar 2020 14:46:46 -0500 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id B2A11400B5; Wed, 4 Mar 2020 19:46:45 +0000 (UTC) From: Efraim Flashner To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-pytest-vcr. Date: Wed, 4 Mar 2020 21:46:14 +0200 Message-Id: <20200304194614.11436-1-efraim@flashner.co.il> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 178.62.234.194 X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: submit Cc: Efraim Flashner X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) * gnu/packages/python-check.scm (python-pytest-vcr): New variable. --- gnu/packages/python-check.scm | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.sc= m index a69619b96a..70a5b1e452 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2019 Ricardo Wurmus ;;; Copyright =C2=A9 2019 Tobias Geerinckx-Rice -;;; Copyright =C2=A9 2019 Efraim Flashner +;;; Copyright =C2=A9 2019, 2020 Efraim Flashner ;;; Copyright =C2=A9 2019 Maxim Cournoyer ;;; Copyright =C2=A9 2019 Hartmut Goebel ;;; Copyright =C2=A9 2020 Julien Lepiller @@ -30,6 +30,7 @@ #:use-module (guix utils) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) + #:use-module (guix git-download) #:use-module (guix download) #:use-module (guix build-system python)) =20 @@ -109,6 +110,37 @@ detect the absence of a cassette file and once again= record all HTTP interactions, which will update them to correspond to the new API.") (license license:expat))) =20 +(define-public python-pytest-vcr + (package + (name "python-pytest-vcr") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ktosiek/pytest-vcr") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1i6fin91mklvbi8jzfiswvwf1m91f43smpj36a17xrzk4gisfs6i")))) + (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" "tests/")))))) + (propagated-inputs + `(("python-pytest" ,python-pytest) + ("python-vcrpy" ,python-vcrpy))) + (home-page "https://github.com/ktosiek/pytest-vcr") + (synopsis "Plugin for managing VCR.py cassettes") + (description + "Plugin for managing VCR.py cassettes.") + (license license:expat))) + (define-public python-pytest-checkdocs (package (name "python-pytest-checkdocs") --=20 2.25.1 ------------=_1584256502-3097-1--