guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: python2-pysqlite: Update to 2.8.1.


From: Efraim Flashner
Subject: 05/05: gnu: python2-pysqlite: Update to 2.8.1.
Date: Sun, 07 Feb 2016 14:07:46 +0000

efraim pushed a commit to branch master
in repository guix.

commit fe476868df60426a09dea071882b972b591d5081
Author: Efraim Flashner <address@hidden>
Date:   Sun Feb 7 15:58:21 2016 +0200

    gnu: python2-pysqlite: Update to 2.8.1.
    
    * gnu/packages/python.scm (python2-pysqlite): Update to 2.8.1.
    [source]: Change to `pypi uri` syntax.
    [home-page]: Update to new homepage.
---
 gnu/packages/python.scm |   14 ++++----------
 1 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e2298a0..b135ab7 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1080,27 +1080,21 @@ also includes an interface for tabix.")
 (define-public python2-pysqlite
   (package
     (name "python2-pysqlite")
-    (version "2.6.3a")                            ; see below
+    (version "2.8.1")
     (source
      (origin
       (method url-fetch)
-      ;; During the switch from code.google.com to pypi.python.org, the 2.6.3
-      ;; tarball was modified, but the version number was kept:
-      ;; <https://lists.gnu.org/archive/html/guix-devel/2014-02/msg00077.html>.
-      ;; Here we want to refer to the pypi-hosted 2.6.3 tarball.
-      (uri (string-append
-            "https://pypi.python.org/packages/source/p/pysqlite/pysqlite-";
-            "2.6.3" ".tar.gz"))
+      (uri (pypi-uri "pysqlite" version))
       (sha256
        (base32
-        "13djzgnbi71znjjyaw4nybg6smilgszcid646j5qav7mdchkb77y"))))
+        "0rm0zqyb363y6wljhfmbxs16jjv7p8nk1d8zgq9sdwj6js7y3jkm"))))
     (build-system python-build-system)
     (inputs
      `(("sqlite" ,sqlite)))
     (arguments
      `(#:python ,python-2 ; incompatible with Python 3
        #:tests? #f)) ; no test target
-    (home-page "https://pypi.python.org/pypi/pysqlite";)
+    (home-page "http://github.com/ghaering/pysqlite";)
     (synopsis "SQLite bindings for Python")
     (description
      "Pysqlite provides SQLite bindings for Python that comply to the



reply via email to

[Prev in Thread] Current Thread [Next in Thread]