me
/
guix
Archived
1
0
Fork 0

gnu: python-sqlparse: Fix syntax error.

This is a follow-up to commit 8d688cd27f.

* gnu/packages/python.scm (python-sqlparse)[arguments]: Add missing lambda.
master
Marius Bakke 2017-11-11 06:40:50 +01:00
parent 8d688cd27f
commit e077e7da7f
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 1 additions and 1 deletions

View File

@ -11773,7 +11773,7 @@ multiple processes (imagine multiprocessing, billiard, futures, celery etc).
`(#:phases
(modify-phases %standard-phases
(replace 'check
(zero? (system* "py.test")))))))
(lambda _ (zero? (system* "py.test")))))))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/andialbrecht/sqlparse")