gnu: Add python-pip-run.

* gnu/packages/python-xyz.scm (python-pip-run): New variable.
This commit is contained in:
Maxim Cournoyer 2022-04-06 01:09:32 -04:00
parent 831bf98f6c
commit a293faef3f
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -12866,6 +12866,44 @@ (define-public python-pip-run-bootstrap
@end example")
(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
(package
(name "python-tlsh")