summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/python-web.scm13
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index cf71a64e7c..fccb7603ac 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -26,7 +26,7 @@
;;; Copyright © 2018 Tomáš Čech <[email protected]>
;;; Copyright © 2018, 2019 Nicolas Goaziou <[email protected]>
;;; Copyright © 2018 Mathieu Othacehe <[email protected]>
-;;; Copyright © 2018 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2018, 2020 Maxim Cournoyer <[email protected]>
;;; Copyright © 2019 Vagrant Cascadian <[email protected]>
;;; Copyright © 2019 Brendan Tildesley <[email protected]>
;;; Copyright © 2019 Pierre Langlois <[email protected]>
@@ -2895,6 +2895,17 @@ pretty printer and a tree visitor.")
(base32
"1zq1spkjr4sjdnalpp8wl242kdqyk6fhbnhr8hi4r4f0km4bspnz"))))
(build-system python-build-system)
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (add-after 'unpack 'fix-imports
+ (lambda _
+ (substitute* '("docs/index.rst"
+ "docs/conf.py"
+ "flask_basicauth.py"
+ "test_basicauth.py")
+ (("flask\\.ext\\.basicauth")
+ "flask_basicauth"))
+ #t)))))
(propagated-inputs
`(("python-flask" ,python-flask)))
(home-page