guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: python-uniseg: Switch to PyPi source to get missing ucd.sqli


From: Leo Famulari
Subject: 01/01: gnu: python-uniseg: Switch to PyPi source to get missing ucd.sqlite3.
Date: Tue, 30 Jan 2018 00:18:02 -0500 (EST)

lfam pushed a commit to branch master
in repository guix.

commit 526789a1acb14cf930a756e968b4de8cb9d95188
Author: Ben Sturmfels <address@hidden>
Date:   Sun Jan 21 18:43:07 2018 +1100

    gnu: python-uniseg: Switch to PyPi source to get missing ucd.sqlite3.
    
    Fixes <https://bugs.gnu.org/30189>.
    
    * gnu/packages/python.scm (python-uniseg)[source]: Fetch from PyPi.
    [native-inputs]: Add unzip.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/python.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e4d5edb..94551da 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -821,15 +821,15 @@ Python 3 support.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://bitbucket.org/emptypage/uniseg-python/";
-                           "get/rel-" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (uri (pypi-uri "uniseg" version ".zip"))
        (sha256
         (base32
-         "1df4gddnj2a0v8z35wb2ra5vvh1f1qyxs8fgd25c8g64031mna6x"))))
+         "05jsazvz6nbmh6l3v1rph5ydkqn1hzx1pyggdyvgp2qgmgrnmiz2"))))
     (build-system python-build-system)
     (arguments
      '(#:tests? #f)) ; The test suite requires network access.
+    (native-inputs
+     `(("unzip" ,unzip)))
     (home-page
      "https://bitbucket.org/emptypage/uniseg-python";)
     (synopsis



reply via email to

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