diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-11-11 06:40:50 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-11-11 06:40:50 +0100 |
commit | e077e7da7fc9fd853dd7e4519ba4b0f1729c3357 (patch) | |
tree | ab57421bfbff79e7f0d3f9aa760f3635dc21ad89 /gnu/packages | |
parent | 8d688cd27f267f4d143d0f20ed3c352188151302 (diff) | |
download | guix-e077e7da7fc9fd853dd7e4519ba4b0f1729c3357.tar guix-e077e7da7fc9fd853dd7e4519ba4b0f1729c3357.tar.gz |
gnu: python-sqlparse: Fix syntax error.
This is a follow-up to commit 8d688cd27f267f4d143d0f20ed3c352188151302.
* gnu/packages/python.scm (python-sqlparse)[arguments]: Add missing lambda.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1342f528e0..9200165b35 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -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") |