me
/
guix
Archived
1
0
Fork 0

gnu: python-pytest-shutil: Adjust to use python-path.

* gnu/packages/python-check.scm (python-pytest-shutil)
[phases]{use-path-instead-of-path.py}: New phase.
[propagated-inputs]: Replace python-path.py with python-path.
master
Maxim Cournoyer 2022-04-06 15:23:25 -04:00
parent c6c2e3710b
commit f2be0c5b2b
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 8 additions and 4 deletions

View File

@ -1080,6 +1080,12 @@ isort.")
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'use-path-instead-of-path.py
;; path.py is obsolete.
(lambda _
(substitute* "setup.py"
(("'path.py'")
"'path'"))))
(add-after 'unpack 'patch-tests
(lambda _
(mkdir "/tmp/bin")
@ -1087,11 +1093,9 @@ isort.")
(("dirname = '/bin'")
"dirname = '/tmp/bin'")
(("bindir = os.path.realpath\\('/bin'\\)")
"bindir = os.path.realpath('/tmp/bin')"))
#t)))))
"bindir = os.path.realpath('/tmp/bin')")))))))
(propagated-inputs
(list python-contextlib2 python-execnet python-pathpy
python-termcolor))
(list python-contextlib2 python-execnet python-path python-termcolor))
(native-inputs
(list python-mock python-pytest python-setuptools-git))
(home-page "https://github.com/manahl/pytest-plugins")