gnu: python-psycopg2: Update to 2.9.3.
* gnu/packages/databases.scm (python-psycopg2): Update to 2.9.3. [home-page]: Follow redirect to <https://www.psycopg.org>.
This commit is contained in:
parent
e22957fc15
commit
ee6e69a554
1 changed files with 4 additions and 4 deletions
|
@ -3406,21 +3406,21 @@ designed to be easy and intuitive to use.")
|
||||||
(define-public python-psycopg2
|
(define-public python-psycopg2
|
||||||
(package
|
(package
|
||||||
(name "python-psycopg2")
|
(name "python-psycopg2")
|
||||||
(version "2.9.2")
|
(version "2.9.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "psycopg2" version))
|
(uri (pypi-uri "psycopg2" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1smvvs1ngqy0ymlp1d7f85j09j9v0z5dq14f1qky0j0qi7xajkd8"))))
|
(base32 "1099as8ind9kpz30rmqzc3nir668fmpkxwayrj2sjka3ycdiv14f"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Tests would require a postgresql database "psycopg2_test"
|
;; Tests would require a postgresql database "psycopg2_test"
|
||||||
;; and a running postgresql database management service.
|
;; and a running postgresql database management service.
|
||||||
`(#:tests? #f)) ; TODO re-enable after providing a test-db.
|
'(#:tests? #f)) ; TODO re-enable after providing a test-db.
|
||||||
(inputs
|
(inputs
|
||||||
(list postgresql)) ; libpq
|
(list postgresql)) ; libpq
|
||||||
(home-page "http://initd.org/psycopg/")
|
(home-page "https://www.psycopg.org/")
|
||||||
(synopsis "Python PostgreSQL adapter")
|
(synopsis "Python PostgreSQL adapter")
|
||||||
(description
|
(description
|
||||||
"psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API
|
"psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API
|
||||||
|
|
Reference in a new issue