mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
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.
This commit is contained in:
parent
b7aa3f5d2e
commit
d1e7ca2df8
1 changed files with 1 additions and 5 deletions
|
@ -258,11 +258,7 @@ (define (make-pypi-sexp name version source-url wheel-url home-page synopsis
|
|||
;; 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)))))
|
||||
|
|
Loading…
Reference in a new issue