mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 09:16:31 +01:00
gnu: Add python-pip-run.
* gnu/packages/python-xyz.scm (python-pip-run): New variable.
This commit is contained in:
parent
831bf98f6c
commit
a293faef3f
1 changed files with 38 additions and 0 deletions
|
@ -12866,6 +12866,44 @@ (define-public python-pip-run-bootstrap
|
||||||
@end example")
|
@end example")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public python-pip-run
|
||||||
|
(package/inherit python-pip-run-bootstrap
|
||||||
|
(name "python-pip-run")
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments python-pip-run-bootstrap)
|
||||||
|
((#:tests? _ #f)
|
||||||
|
#t)
|
||||||
|
((#:phases phases #~%standard-phases)
|
||||||
|
#~(modify-phases #$phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "pytest" "-k"
|
||||||
|
(string-append
|
||||||
|
;; Do not test the myproject.toml build as it tries
|
||||||
|
;; to pull dependencies from the internet.
|
||||||
|
"not project "
|
||||||
|
;; These tests attempt to install dependencies from
|
||||||
|
;; the network and fail.
|
||||||
|
"and not test_pkg_imported "
|
||||||
|
"and not test_pkg_loaded_from_alternate_index ")))))))))
|
||||||
|
(propagated-inputs
|
||||||
|
(modify-inputs (package-propagated-inputs python-pip-run-bootstrap)
|
||||||
|
(replace "python-path-bootstrap" python-path)))
|
||||||
|
(native-inputs
|
||||||
|
(modify-inputs (package-native-inputs python-pip-run-bootstrap)
|
||||||
|
(append python-nbformat
|
||||||
|
python-pygments
|
||||||
|
python-pytest
|
||||||
|
python-pytest-black
|
||||||
|
python-pytest-checkdocs
|
||||||
|
python-pytest-cov
|
||||||
|
python-pytest-enabler
|
||||||
|
python-pytest-flake8
|
||||||
|
python-pytest-mypy)))
|
||||||
|
(properties (alist-delete 'hidden? (package-properties
|
||||||
|
python-pip-run-bootstrap)))))
|
||||||
|
|
||||||
(define-public python-tlsh
|
(define-public python-tlsh
|
||||||
(package
|
(package
|
||||||
(name "python-tlsh")
|
(name "python-tlsh")
|
||||||
|
|
Loading…
Reference in a new issue