diff options
author | Jelle Licht <jlicht@fsfe.org> | 2018-06-10 20:35:39 +0200 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2018-06-10 22:15:12 +0200 |
commit | 3edf0d53a4043c30f3ff87b3b4b7b47d1bac1397 (patch) | |
tree | 6b5d908ff681825c989f57b4eb69eecb2942bf0d /guix/import/pypi.scm | |
parent | 670a5e543033022a66d930d62a7dbff510f095db (diff) |
import: json: Consolidate duplicate json-fetch functionality.
* guix/import/json.scm (json-fetch): Return a list or hash table.
(json-fetch-alist): New procedure.
* guix/import/github.scm (json-fetch*): Remove.
(latest-released-version): Use json-fetch.
* guix/import/cpan.scm (module->dist-name): Use json-fetch-alist.
(cpan-fetch): Likewise.
* guix/import/crate.scm (crate-fetch): Likewise.
* guix/import/gem.scm (rubygems-fetch): Likewise.
* guix/import/pypi.scm (pypi-fetch): Likewise.
* guix/import/stackage.scm (stackage-lts-info-fetch): Likewise.
Diffstat (limited to 'guix/import/pypi.scm')
-rw-r--r-- | guix/import/pypi.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index bb0db1ba85..6beab6b010 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -51,8 +51,8 @@ (define (pypi-fetch name) "Return an alist representation of the PyPI metadata for the package NAME, or #f on failure." - (json-fetch (string-append "https://pypi.python.org/pypi/" - name "/json"))) + (json-fetch-alist (string-append "https://pypi.python.org/pypi/" + name "/json"))) ;; For packages found on PyPI that lack a source distribution. (define-condition-type &missing-source-error &error |