Skip to content
Snippets Groups Projects
Unverified Commit e077e7da authored by Marius Bakke's avatar Marius Bakke
Browse files

gnu: python-sqlparse: Fix syntax error.

This is a follow-up to commit 8d688cd2.

* gnu/packages/python.scm (python-sqlparse)[arguments]: Add missing lambda.
parent 8d688cd2
No related branches found
No related tags found
No related merge requests found
...@@ -11773,7 +11773,7 @@ (define-public python-sqlparse ...@@ -11773,7 +11773,7 @@ (define-public python-sqlparse
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(replace 'check (replace 'check
(zero? (system* "py.test"))))))) (lambda _ (zero? (system* "py.test")))))))
(native-inputs (native-inputs
`(("python-pytest" ,python-pytest))) `(("python-pytest" ,python-pytest)))
(home-page "https://github.com/andialbrecht/sqlparse") (home-page "https://github.com/andialbrecht/sqlparse")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment