mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: Add python-virtualenv-clone.
* gnu/packages/python-xyz.scm (python-virtualenv-clone): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
a558998f7d
commit
fc36ea0a0a
1 changed files with 34 additions and 0 deletions
|
@ -4277,6 +4277,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")
|
||||
|
|
Loading…
Reference in a new issue