gnu: python2-pysqlite: Fix 'license'.

* gnu/packages/python.scm (python2-pysqlite): Refer to (@ (guix
  licenses) zlib), not to the same-named package.
This commit is contained in:
Ludovic Courtès 2013-09-21 01:59:46 +02:00
parent 4646e30a7a
commit ed0cdf837d
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
(define-module (gnu packages python) (define-module (gnu packages python)
#:use-module ((guix licenses) #:select (bsd-3 bsd-style psfl x11)) #:use-module ((guix licenses) #:select (bsd-3 bsd-style psfl x11))
#:use-module ((guix licenses) #:select (zlib) #:use-module ((guix licenses) #:select (zlib)
#:renamer (symbol-prefix-proc 'license)) #:renamer (symbol-prefix-proc 'license:))
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages compression) #:use-module (gnu packages compression)
#:use-module (gnu packages gdbm) #:use-module (gnu packages gdbm)
@ -342,7 +342,7 @@ datetime module, available in Python 2.3+.")
(description (description
"Pysqlite provides SQLite bindings for Python that comply to the "Pysqlite provides SQLite bindings for Python that comply to the
Database API 2.0T.") Database API 2.0T.")
(license zlib))) (license license:zlib)))
(define-public python2-mechanize (define-public python2-mechanize