* [bug#60745] [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable.
@ 2023-01-11 22:39 Steve George
2023-02-17 15:57 ` Christopher Baines
0 siblings, 1 reply; 2+ messages in thread
From: Steve George @ 2023-01-11 22:39 UTC (permalink / raw)
To: 60745; +Cc: Steve George, ludo
---
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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [bug#60745] [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable.
2023-01-11 22:39 [bug#60745] [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable Steve George
@ 2023-02-17 15:57 ` Christopher Baines
0 siblings, 0 replies; 2+ messages in thread
From: Christopher Baines @ 2023-02-17 15:57 UTC (permalink / raw)
To: Steve George; +Cc: 60745-done, 60745
[-- Attachment #1: Type: text/plain, Size: 94 bytes --]
Thanks Steve, I've pushed this to master as
fc36ea0a0a40c618ee3488d8432ebb6d27b56fa3.
Chris
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-02-17 16:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-11 22:39 [bug#60745] [PATCH 1/1] gnu: Add python-virtualenv-clone * gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable Steve George
2023-02-17 15:57 ` Christopher Baines
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.