~ruther/guix-local

d1e7ca2df8c0e0dd601079c77f67ba6828cec08a — Danny Milosavljevic 8 years ago b7aa3f5
import: pypi: Always use pypi.io URL with downcased package name.

* guix/import/pypi.scm (make-pypi-sexp): Always use pypi.io URL with
downcased package name.
1 files changed, 1 insertions(+), 5 deletions(-)

M guix/import/pypi.scm
M guix/import/pypi.scm => guix/import/pypi.scm +1 -5
@@ 258,11 258,7 @@ VERSION, SOURCE-URL, HOME-PAGE, SYNOPSIS, DESCRIPTION, and LICENSE."
                       ;; Sometimes 'pypi-uri' doesn't quite work due to mixed
                       ;; cases in NAME, for instance, as is the case with
                       ;; "uwsgi".  In that case, fall back to a full URL.
                       (uri ,(if (equal? (pypi-uri name version) source-url)
                                 `(pypi-uri ,name version)
                                 `(string-append
                                   ,@(factorize-uri source-url version))))

                       (uri (pypi-uri ,(string-downcase name) version))
                       (sha256
                        (base32
                         ,(guix-hash-url temp)))))