From unknown Sun Jun 22 00:21:07 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#60745] [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable. Resent-From: Steve George Original-Sender: "Debbugs-submit" Resent-CC: ludo@gnu.org, guix-patches@gnu.org Resent-Date: Wed, 11 Jan 2023 22:41:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 60745 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 60745@debbugs.gnu.org Cc: Steve George , ludo@gnu.org X-Debbugs-Original-To: guix-patches@gnu.org X-Debbugs-Original-Xcc: ludo@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.167347681416420 (code B ref -1); Wed, 11 Jan 2023 22:41:01 +0000 Received: (at submit) by debbugs.gnu.org; 11 Jan 2023 22:40:14 +0000 Received: from localhost ([127.0.0.1]:44139 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pFjlV-0004Gm-QC for submit@debbugs.gnu.org; Wed, 11 Jan 2023 17:40:14 -0500 Received: from lists.gnu.org ([209.51.188.17]:50156) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pFjlT-0004GZ-04 for submit@debbugs.gnu.org; Wed, 11 Jan 2023 17:40:11 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pFjlS-0003S3-RO for guix-patches@gnu.org; Wed, 11 Jan 2023 17:40:10 -0500 Received: from mailtransmit05.runbox.com ([2a0c:5a00:149::26]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pFjlQ-0002RM-K8 for guix-patches@gnu.org; Wed, 11 Jan 2023 17:40:10 -0500 Received: from mailtransmit03.runbox ([10.9.9.163] helo=aibo.runbox.com) by mailtransmit05.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1pFjlJ-0005E0-00 for guix-patches@gnu.org; Wed, 11 Jan 2023 23:40:01 +0100 Received: from [10.9.9.74] (helo=submission03.runbox) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1pFjlI-000874-FT for guix-patches@gnu.org; Wed, 11 Jan 2023 23:40:00 +0100 Received: by submission03.runbox with esmtpsa [Authenticated ID (641962)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1pFjlA-0001hM-Ge; Wed, 11 Jan 2023 23:39:52 +0100 From: Steve George Date: Wed, 11 Jan 2023 22:39:29 +0000 Message-Id: <20230111223929.1002766-1-steve@futurile.net> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: permerror client-ip=2a0c:5a00:149::26; envelope-from=steve@futurile.net; helo=mailtransmit05.runbox.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.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: -2.3 (--) --- gnu/packages/python-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 32d826d3c5..1e38f0315a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4282,6 +4282,40 @@ (define-public python-crossenv work on your part.") (license license:expat))) +(define-public python-virtualenv-clone + (package + (name "python-virtualenv-clone") + (version "0.5.7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/edwardgeorge/virtualenv-clone") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0p0d1y3axvjfnxlgwjx2374gikc8bmc82g0m7yashihbikh7pcxa")))) + (build-system python-build-system) + (arguments + (list #:phases #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (delete-file "tox.ini") + (invoke "pytest" "-vvv" "tests"))))))) + (native-inputs (list python-pytest + python-tox + python-virtualenv + python-coverage + python-wheel + python-tomli + python-hypothesis)) + (home-page "https://github.com/edwardgeorge/virtualenv-clone") + (synopsis "Clone a non-relocatable virtualenv cleanly") + (description + "Clone non-relocatable virtualenvs without breaking site-packages.") + (license license:expat))) + (define-public python-uc-micro-py (package (name "python-uc-micro-py") base-commit: 5f7ce22201c25b0a73dae253b8759fa245c65799 -- 2.38.1 From unknown Sun Jun 22 00:21:07 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#60745] [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 17 Feb 2023 16:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 60745 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Steve George Cc: 60745-done@debbugs.gnu.org, 60745@debbugs.gnu.org X-Debbugs-Original-Cc: 60745-done@debbugs.gnu.org, guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.167664958423321 (code B ref -1); Fri, 17 Feb 2023 16:00:02 +0000 Received: (at submit) by debbugs.gnu.org; 17 Feb 2023 15:59:44 +0000 Received: from localhost ([127.0.0.1]:41137 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pT39E-000644-0u for submit@debbugs.gnu.org; Fri, 17 Feb 2023 10:59:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:34678) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pT39B-00063s-C9 for submit@debbugs.gnu.org; Fri, 17 Feb 2023 10:59:41 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pT39B-0000NW-6c for guix-patches@gnu.org; Fri, 17 Feb 2023 10:59:41 -0500 Received: from mira.cbaines.net ([2a01:7e00:e000:2f8:fd4d:b5c7:13fb:3d27]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pT399-0008KH-RE for guix-patches@gnu.org; Fri, 17 Feb 2023 10:59:40 -0500 Received: from localhost (cpc158837-hari22-2-0-cust393.20-2.cable.virginm.net [86.20.51.138]) by mira.cbaines.net (Postfix) with ESMTPSA id 9493F169CC; Fri, 17 Feb 2023 15:59:37 +0000 (GMT) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 4d202e0e; Fri, 17 Feb 2023 15:59:00 +0000 (UTC) References: <20230111223929.1002766-1-steve@futurile.net> User-agent: mu4e 1.8.11; emacs 28.2 From: Christopher Baines Date: Fri, 17 Feb 2023 15:57:16 +0000 In-reply-to: <20230111223929.1002766-1-steve@futurile.net> Message-ID: <87ttzkl1vk.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=2a01:7e00:e000:2f8:fd4d:b5c7:13fb:3d27; envelope-from=mail@cbaines.net; helo=mira.cbaines.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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: -2.4 (--) --=-=-= Content-Type: text/plain Thanks Steve, I've pushed this to master as fc36ea0a0a40c618ee3488d8432ebb6d27b56fa3. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmPvpD9fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9Xf+eRAAlPXwcX/GiCn+2o6lAGA9hNuUax87EqFm vpY4DylgnmsWzrD7AemAThByf58q6LEqHtDIBpE35k8VPQzV3xzCMy7pB3jSFJFQ mGLLiroxI5tI7l5YDNJzi430/yHITFj220eKEvjoQXt/8nAHg3SRo/8CyaoxTm+H +DmNmWo8rWAqFcK4YGLmJRD/2eidQKuJsJ9ab06otiBz8DC226ibWwDzuofVk/EE vCAFKhuCDttmCSSlT0qm1TXRtmG0HuXW4fQxQ154H9nmEIl9iwQ6wOZRpuAJHAp1 hAouaK6obT8m6amIBEH8It8U0ytEOOb7S+aeq8wxvXuJEr2uESDYrgEYmFcR1f9O b52kWYnJUdpUeK1gFUJc2H7JeDm+STcshLLe5FQYkQgWOzNJbcPaUVCZwQxw9hws ln73ErP3zG+1f4GonZqnb39P3b+WiAe4Xpnc8+A+CtiraS97eeltPj2WWVpzwHrN AMu5IKxphcGSFRXUfeibmXE+B6RKJ5BzsGfcqrqwma05AH4HWpaj6ocHc7+nEyPb NOPxgEXGgsj+05cxsPV+1vRsOSswuwtPi0RR0gHzFTAbUS/4K85sp4/3jNTquVZy d16aElX1stztBYKHNcXR5Ll9x5XMCx1aHF+ZMOgZ6npsQlxv00FsTIsSPuzs8PER EMuZAVHyjqc= =zjRl -----END PGP SIGNATURE----- --=-=-=-- From unknown Sun Jun 22 00:21:07 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: Steve George Subject: bug#60745: closed (Re: [bug#60745] [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable.) Message-ID: References: <87ttzkl1vk.fsf@cbaines.net> <20230111223929.1002766-1-steve@futurile.net> X-Gnu-PR-Message: they-closed 60745 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 60745@debbugs.gnu.org Date: Fri, 17 Feb 2023 16:00:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1676649603-23378-1" This is a multi-part message in MIME format... ------------=_1676649603-23378-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #60745: [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-= xyz.scm (python-virtualenv-clone): New variable. 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 60745@debbugs.gnu.org. --=20 60745: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D60745 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1676649603-23378-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 60745-done) by debbugs.gnu.org; 17 Feb 2023 15:59:41 +0000 Received: from localhost ([127.0.0.1]:41134 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pT39A-00063k-Q2 for submit@debbugs.gnu.org; Fri, 17 Feb 2023 10:59:40 -0500 Received: from mira.cbaines.net ([212.71.252.8]:42256) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pT399-00063c-Cs for 60745-done@debbugs.gnu.org; Fri, 17 Feb 2023 10:59:39 -0500 Received: from localhost (cpc158837-hari22-2-0-cust393.20-2.cable.virginm.net [86.20.51.138]) by mira.cbaines.net (Postfix) with ESMTPSA id 9493F169CC; Fri, 17 Feb 2023 15:59:37 +0000 (GMT) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 4d202e0e; Fri, 17 Feb 2023 15:59:00 +0000 (UTC) References: <20230111223929.1002766-1-steve@futurile.net> User-agent: mu4e 1.8.11; emacs 28.2 From: Christopher Baines To: Steve George Subject: Re: [bug#60745] [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable. Date: Fri, 17 Feb 2023 15:57:16 +0000 In-reply-to: <20230111223929.1002766-1-steve@futurile.net> Message-ID: <87ttzkl1vk.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 60745-done Cc: 60745-done@debbugs.gnu.org, guix-patches@gnu.org 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 (-) --=-=-= Content-Type: text/plain Thanks Steve, I've pushed this to master as fc36ea0a0a40c618ee3488d8432ebb6d27b56fa3. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmPvpD9fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9Xf+eRAAlPXwcX/GiCn+2o6lAGA9hNuUax87EqFm vpY4DylgnmsWzrD7AemAThByf58q6LEqHtDIBpE35k8VPQzV3xzCMy7pB3jSFJFQ mGLLiroxI5tI7l5YDNJzi430/yHITFj220eKEvjoQXt/8nAHg3SRo/8CyaoxTm+H +DmNmWo8rWAqFcK4YGLmJRD/2eidQKuJsJ9ab06otiBz8DC226ibWwDzuofVk/EE vCAFKhuCDttmCSSlT0qm1TXRtmG0HuXW4fQxQ154H9nmEIl9iwQ6wOZRpuAJHAp1 hAouaK6obT8m6amIBEH8It8U0ytEOOb7S+aeq8wxvXuJEr2uESDYrgEYmFcR1f9O b52kWYnJUdpUeK1gFUJc2H7JeDm+STcshLLe5FQYkQgWOzNJbcPaUVCZwQxw9hws ln73ErP3zG+1f4GonZqnb39P3b+WiAe4Xpnc8+A+CtiraS97eeltPj2WWVpzwHrN AMu5IKxphcGSFRXUfeibmXE+B6RKJ5BzsGfcqrqwma05AH4HWpaj6ocHc7+nEyPb NOPxgEXGgsj+05cxsPV+1vRsOSswuwtPi0RR0gHzFTAbUS/4K85sp4/3jNTquVZy d16aElX1stztBYKHNcXR5Ll9x5XMCx1aHF+ZMOgZ6npsQlxv00FsTIsSPuzs8PER EMuZAVHyjqc= =zjRl -----END PGP SIGNATURE----- --=-=-=-- ------------=_1676649603-23378-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 11 Jan 2023 22:40:14 +0000 Received: from localhost ([127.0.0.1]:44139 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pFjlV-0004Gm-QC for submit@debbugs.gnu.org; Wed, 11 Jan 2023 17:40:14 -0500 Received: from lists.gnu.org ([209.51.188.17]:50156) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pFjlT-0004GZ-04 for submit@debbugs.gnu.org; Wed, 11 Jan 2023 17:40:11 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pFjlS-0003S3-RO for guix-patches@gnu.org; Wed, 11 Jan 2023 17:40:10 -0500 Received: from mailtransmit05.runbox.com ([2a0c:5a00:149::26]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pFjlQ-0002RM-K8 for guix-patches@gnu.org; Wed, 11 Jan 2023 17:40:10 -0500 Received: from mailtransmit03.runbox ([10.9.9.163] helo=aibo.runbox.com) by mailtransmit05.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1pFjlJ-0005E0-00 for guix-patches@gnu.org; Wed, 11 Jan 2023 23:40:01 +0100 Received: from [10.9.9.74] (helo=submission03.runbox) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1pFjlI-000874-FT for guix-patches@gnu.org; Wed, 11 Jan 2023 23:40:00 +0100 Received: by submission03.runbox with esmtpsa [Authenticated ID (641962)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1pFjlA-0001hM-Ge; Wed, 11 Jan 2023 23:39:52 +0100 From: Steve George To: guix-patches@gnu.org Subject: [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable. Date: Wed, 11 Jan 2023 22:39:29 +0000 Message-Id: <20230111223929.1002766-1-steve@futurile.net> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 X-Debbugs-Cc: rg@raghavgururajan.name X-Debbugs-Cc: zimon.toutoune@gmail.com X-Debbugs-Cc: paren@disroot.org X-Debbugs-Cc: mail@cbaines.net X-Debbugs-Cc: rekado@elephly.net X-Debbugs-Cc: othacehe@gnu.org X-Debbugs-Cc: jgart@dismail.de X-Debbugs-Cc: me@tobias.gr X-Debbugs-Cc: ludo@gnu.org Content-Transfer-Encoding: 8bit Received-SPF: permerror client-ip=2a0c:5a00:149::26; envelope-from=steve@futurile.net; helo=mailtransmit05.runbox.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Steve George 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: -2.3 (--) --- gnu/packages/python-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 32d826d3c5..1e38f0315a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4282,6 +4282,40 @@ (define-public python-crossenv work on your part.") (license license:expat))) +(define-public python-virtualenv-clone + (package + (name "python-virtualenv-clone") + (version "0.5.7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/edwardgeorge/virtualenv-clone") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0p0d1y3axvjfnxlgwjx2374gikc8bmc82g0m7yashihbikh7pcxa")))) + (build-system python-build-system) + (arguments + (list #:phases #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (delete-file "tox.ini") + (invoke "pytest" "-vvv" "tests"))))))) + (native-inputs (list python-pytest + python-tox + python-virtualenv + python-coverage + python-wheel + python-tomli + python-hypothesis)) + (home-page "https://github.com/edwardgeorge/virtualenv-clone") + (synopsis "Clone a non-relocatable virtualenv cleanly") + (description + "Clone non-relocatable virtualenvs without breaking site-packages.") + (license license:expat))) + (define-public python-uc-micro-py (package (name "python-uc-micro-py") base-commit: 5f7ce22201c25b0a73dae253b8759fa245c65799 -- 2.38.1 ------------=_1676649603-23378-1--