summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2017-10-12 23:56:11 +0300
committerEfraim Flashner <efraim@flashner.co.il>2017-10-13 00:00:42 +0300
commite37415917c4758142c052cae46b3d84517b54ec2 (patch)
tree6c7a2698ff0ee5b8d04d249cd41aff138e0de101
parent4e169fc67aa6bb24403e28a8cd02bf77dc37b1da (diff)
gnu: python-psycopg2: Update to 2.7.3.1.
* gnu/packages/python.scm (python-psycopg2): Update to 2.7.3.1. [inputs]: Replace postgresql@9.6 with postgresql.
-rw-r--r--gnu/packages/python.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 12d4dd21a7a..44504e3833f 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -10815,21 +10815,21 @@ introspection of @code{zope.interface} instances in code.")
10815(define-public python-psycopg2 10815(define-public python-psycopg2
10816 (package 10816 (package
10817 (name "python-psycopg2") 10817 (name "python-psycopg2")
10818 (version "2.6.2") 10818 (version "2.7.3.1")
10819 (source 10819 (source
10820 (origin 10820 (origin
10821 (method url-fetch) 10821 (method url-fetch)
10822 (uri (pypi-uri "psycopg2" version)) 10822 (uri (pypi-uri "psycopg2" version))
10823 (sha256 10823 (sha256
10824 (base32 10824 (base32
10825 "0p60z2gwfcal30y2w8gprflchp1kcg9qblc5rn782p4wxl90wjbh")))) 10825 "0rda1j02ds6s28752fhmpwg761sh6jsxi1gpczqkrd28cki1cywv"))))
10826 (build-system python-build-system) 10826 (build-system python-build-system)
10827 (arguments 10827 (arguments
10828 ;; Tests would require a postgresql database "psycopg2_test" 10828 ;; Tests would require a postgresql database "psycopg2_test"
10829 ;; and a running postgresql database management service. 10829 ;; and a running postgresql database management service.
10830 `(#:tests? #f)) ; TODO re-enable after providing a test-db. 10830 `(#:tests? #f)) ; TODO re-enable after providing a test-db.
10831 (inputs 10831 (inputs
10832 `(("postgresql" ,postgresql-9.6))) ; libpq 10832 `(("postgresql" ,postgresql))) ; libpq
10833 (home-page "http://initd.org/psycopg/") 10833 (home-page "http://initd.org/psycopg/")
10834 (synopsis "Python PostgreSQL adapter") 10834 (synopsis "Python PostgreSQL adapter")
10835 (description 10835 (description