gnu: python-flask-script: Fix tests.

* gnu/packages/python-web.scm
(python-flask-script)[arguments]<#:phases>[patch-tests]: New phase.
master
Danny Milosavljevic 2019-06-17 22:52:09 +02:00
parent 27d6d24e63
commit c8535731b8
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 8 additions and 0 deletions

View File

@ -2499,6 +2499,14 @@ this it tries to be opinion-free and very extendable.")
(base32
"0r8w2v89nj6b9p91p495cga5m72a673l2wc0hp0zqk05j4yrc9b4"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-tests
(lambda _
(substitute* "tests.py"
(("flask\\.ext\\.script") "flask_script"))
#t)))))
(propagated-inputs
`(("python-flask" ,python-flask)
("python-argcomplete" ,python-argcomplete)