me
/
guix
Archived
1
0
Fork 0

gnu: python-binwalk: Do not set PYTHONPATH.

* gnu/packages/python-xyz.scm (python-binwalk)
[phases]{set-pythonpath}: Rename to...
{set-home}: ... here.  Do not set PYTHONPATH.  Delete trailing #t.
master
Maxim Cournoyer 2021-01-24 09:50:54 -05:00
parent fb6fcbec2d
commit 11786ee752
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 2 additions and 7 deletions

View File

@ -13708,14 +13708,9 @@ binary or text.")
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'set-pythonpath
(add-before 'check 'set-home
(lambda _
(setenv "PYTHONPATH"
(string-append
(getcwd) "/src/"
":" (getenv "PYTHONPATH")))
(setenv "HOME" "")
#t)))))
(setenv "HOME" ""))))))
(native-inputs
`(("python-coverage" ,python-coverage)
("python-nose" ,python-nose)))