2014-09-27 16:16:23 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2014 David Thompson <davet@gnu.org>
|
2015-11-03 23:54:06 +01:00
|
|
|
;;; Copyright © 2015 Cyril Roelandt <tipecaml@gmail.com>
|
2019-07-21 23:05:54 +02:00
|
|
|
;;; Copyright © 2015, 2016, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
|
2017-05-04 11:57:50 +02:00
|
|
|
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
2018-08-30 15:02:10 +02:00
|
|
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
2019-03-29 04:12:26 +01:00
|
|
|
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2014-09-27 16:16:23 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (guix import pypi)
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
#:use-module (ice-9 regex)
|
2018-08-30 15:12:07 +02:00
|
|
|
#:use-module (ice-9 receive)
|
2015-02-26 02:07:53 +01:00
|
|
|
#:use-module ((ice-9 rdelim) #:select (read-line))
|
2014-09-27 16:16:23 +02:00
|
|
|
#:use-module (srfi srfi-1)
|
2019-03-29 04:12:26 +01:00
|
|
|
#:use-module (srfi srfi-11)
|
2015-02-26 02:07:53 +01:00
|
|
|
#:use-module (srfi srfi-26)
|
2015-12-01 23:15:19 +01:00
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
#:use-module (srfi srfi-35)
|
2015-02-26 02:07:53 +01:00
|
|
|
#:use-module (guix ui)
|
2014-09-27 16:16:23 +02:00
|
|
|
#:use-module (guix utils)
|
2016-07-26 17:49:34 +02:00
|
|
|
#:use-module ((guix build utils)
|
|
|
|
#:select ((package-name->name+version
|
2018-08-30 15:02:10 +02:00
|
|
|
. hyphen-package-name->name+version)
|
2019-03-28 05:26:02 +01:00
|
|
|
find-files
|
|
|
|
invoke))
|
2014-09-27 16:16:23 +02:00
|
|
|
#:use-module (guix import utils)
|
2015-11-03 22:38:49 +01:00
|
|
|
#:use-module ((guix download) #:prefix download:)
|
2015-01-08 21:38:54 +01:00
|
|
|
#:use-module (guix import json)
|
2014-09-27 16:16:23 +02:00
|
|
|
#:use-module (guix packages)
|
2015-11-03 22:38:49 +01:00
|
|
|
#:use-module (guix upstream)
|
2016-09-22 11:30:17 +02:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2014-09-27 16:16:23 +02:00
|
|
|
#:use-module (guix build-system python)
|
2019-03-28 05:26:00 +01:00
|
|
|
#:export (parse-requires.txt
|
2019-03-28 05:26:03 +01:00
|
|
|
parse-wheel-metadata
|
2019-03-28 05:26:01 +01:00
|
|
|
specification->requirement-name
|
2019-03-28 05:26:00 +01:00
|
|
|
guix-package->pypi-name
|
2018-08-30 15:12:07 +02:00
|
|
|
pypi-recursive-import
|
2016-07-26 17:49:34 +02:00
|
|
|
pypi->guix-package
|
2015-11-03 22:38:49 +01:00
|
|
|
%pypi-updater))
|
2014-09-27 16:16:23 +02:00
|
|
|
|
|
|
|
(define (pypi-fetch name)
|
2014-11-05 17:56:39 +01:00
|
|
|
"Return an alist representation of the PyPI metadata for the package NAME,
|
|
|
|
or #f on failure."
|
2019-07-21 23:05:54 +02:00
|
|
|
(json-fetch (string-append "https://pypi.org/pypi/" name "/json")))
|
2014-09-27 16:16:23 +02:00
|
|
|
|
2015-12-01 23:15:19 +01:00
|
|
|
;; For packages found on PyPI that lack a source distribution.
|
|
|
|
(define-condition-type &missing-source-error &error
|
|
|
|
missing-source-error?
|
|
|
|
(package missing-source-error-package))
|
|
|
|
|
2014-09-27 16:16:23 +02:00
|
|
|
(define (latest-source-release pypi-package)
|
|
|
|
"Return the latest source release for PYPI-PACKAGE."
|
|
|
|
(let ((releases (assoc-ref* pypi-package "releases"
|
|
|
|
(assoc-ref* pypi-package "info" "version"))))
|
|
|
|
(or (find (lambda (release)
|
|
|
|
(string=? "sdist" (assoc-ref release "packagetype")))
|
2019-07-21 23:05:54 +02:00
|
|
|
(vector->list releases))
|
2015-12-01 23:15:19 +01:00
|
|
|
(raise (condition (&missing-source-error
|
|
|
|
(package pypi-package)))))))
|
2014-09-27 16:16:23 +02:00
|
|
|
|
2015-12-27 03:26:11 +01:00
|
|
|
(define (latest-wheel-release pypi-package)
|
|
|
|
"Return the url of the wheel for the latest release of pypi-package,
|
|
|
|
or #f if there isn't any."
|
|
|
|
(let ((releases (assoc-ref* pypi-package "releases"
|
|
|
|
(assoc-ref* pypi-package "info" "version"))))
|
|
|
|
(or (find (lambda (release)
|
|
|
|
(string=? "bdist_wheel" (assoc-ref release "packagetype")))
|
2019-07-21 23:05:54 +02:00
|
|
|
(vector->list releases))
|
2015-12-27 03:26:11 +01:00
|
|
|
#f)))
|
|
|
|
|
2015-02-26 02:07:53 +01:00
|
|
|
(define (python->package-name name)
|
|
|
|
"Given the NAME of a package on PyPI, return a Guix-compliant name for the
|
|
|
|
package."
|
|
|
|
(if (string-prefix? "python-" name)
|
|
|
|
(snake-case name)
|
|
|
|
(string-append "python-" (snake-case name))))
|
|
|
|
|
2015-11-03 22:38:49 +01:00
|
|
|
(define (guix-package->pypi-name package)
|
2018-07-23 00:25:34 +02:00
|
|
|
"Given a Python PACKAGE built from pypi.org, return the name of the
|
2015-11-03 22:38:49 +01:00
|
|
|
package on PyPI."
|
2017-02-08 15:58:36 +01:00
|
|
|
(define (url->pypi-name url)
|
2016-07-26 17:49:34 +02:00
|
|
|
(hyphen-package-name->name+version
|
2017-02-08 15:58:36 +01:00
|
|
|
(basename (file-sans-extension url))))
|
|
|
|
|
|
|
|
(match (and=> (package-source package) origin-uri)
|
|
|
|
((? string? url)
|
|
|
|
(url->pypi-name url))
|
|
|
|
((lst ...)
|
|
|
|
(any url->pypi-name lst))
|
|
|
|
(#f #f)))
|
2015-11-03 22:38:49 +01:00
|
|
|
|
2015-12-27 03:26:11 +01:00
|
|
|
(define (wheel-url->extracted-directory wheel-url)
|
|
|
|
(match (string-split (basename wheel-url) #\-)
|
|
|
|
((name version _ ...)
|
|
|
|
(string-append name "-" version ".dist-info"))))
|
|
|
|
|
2019-03-29 04:12:26 +01:00
|
|
|
(define (maybe-inputs package-inputs input-type)
|
2015-02-26 02:07:53 +01:00
|
|
|
"Given a list of PACKAGE-INPUTS, tries to generate the 'inputs' field of a
|
2019-03-29 04:12:26 +01:00
|
|
|
package definition. INPUT-TYPE, a symbol, is used to populate the name of
|
|
|
|
the input field."
|
2015-02-26 02:07:53 +01:00
|
|
|
(match package-inputs
|
|
|
|
(()
|
|
|
|
'())
|
|
|
|
((package-inputs ...)
|
2019-03-29 04:12:26 +01:00
|
|
|
`((,input-type (,'quasiquote ,package-inputs))))))
|
2015-02-26 02:07:53 +01:00
|
|
|
|
2019-03-28 05:26:01 +01:00
|
|
|
(define %requirement-name-regexp
|
|
|
|
;; Regexp to match the requirement name in a requirement specification.
|
|
|
|
|
|
|
|
;; Some grammar, taken from PEP-0508 (see:
|
|
|
|
;; https://www.python.org/dev/peps/pep-0508/).
|
|
|
|
|
|
|
|
;; Using this grammar makes the PEP-0508 regexp easier to understand for
|
|
|
|
;; humans. The use of a regexp is preferred to more primitive string
|
|
|
|
;; manipulations because we can more directly match what upstream uses
|
|
|
|
;; (again, per PEP-0508). The regexp approach is also easier to extend,
|
|
|
|
;; should we want to implement more completely the grammar of PEP-0508.
|
|
|
|
|
|
|
|
;; The unified rule can be expressed as:
|
|
|
|
;; specification = wsp* ( url_req | name_req ) wsp*
|
|
|
|
|
|
|
|
;; where url_req is:
|
|
|
|
;; url_req = name wsp* extras? wsp* urlspec wsp+ quoted_marker?
|
|
|
|
|
|
|
|
;; and where name_req is:
|
|
|
|
;; name_req = name wsp* extras? wsp* versionspec? wsp* quoted_marker?
|
|
|
|
|
|
|
|
;; Thus, we need only matching NAME, which is expressed as:
|
|
|
|
;; identifer_end = letterOrDigit | (('-' | '_' | '.' )* letterOrDigit)
|
|
|
|
;; identifier = letterOrDigit identifier_end*
|
|
|
|
;; name = identifier
|
|
|
|
(let* ((letter-or-digit "[A-Za-z0-9]")
|
|
|
|
(identifier-end (string-append "(" letter-or-digit "|"
|
|
|
|
"[-_.]*" letter-or-digit ")"))
|
|
|
|
(identifier (string-append "^" letter-or-digit identifier-end "*"))
|
|
|
|
(name identifier))
|
|
|
|
(make-regexp name)))
|
|
|
|
|
|
|
|
(define (specification->requirement-name spec)
|
|
|
|
"Given a specification SPEC, return the requirement name."
|
|
|
|
(match:substring
|
|
|
|
(or (regexp-exec %requirement-name-regexp spec)
|
|
|
|
(error (G_ "Could not extract requirement name in spec:") spec))))
|
2019-03-28 05:26:00 +01:00
|
|
|
|
2019-03-29 04:12:26 +01:00
|
|
|
(define (test-section? name)
|
|
|
|
"Return #t if the section name contains 'test' or 'dev'."
|
|
|
|
(any (cut string-contains-ci name <>)
|
|
|
|
'("test" "dev")))
|
|
|
|
|
2019-03-28 05:26:00 +01:00
|
|
|
(define (parse-requires.txt requires.txt)
|
2019-03-29 04:12:26 +01:00
|
|
|
"Given REQUIRES.TXT, a Setuptools requires.txt file, return a list of lists
|
|
|
|
of requirements.
|
|
|
|
|
|
|
|
The first list contains the required dependencies while the second the
|
|
|
|
optional test dependencies. Note that currently, optional, non-test
|
|
|
|
dependencies are omitted since these can be difficult or expensive to
|
|
|
|
satisfy."
|
2019-03-28 05:26:00 +01:00
|
|
|
|
|
|
|
(define (comment? line)
|
|
|
|
;; Return #t if the given LINE is a comment, #f otherwise.
|
|
|
|
(string-prefix? "#" (string-trim line)))
|
|
|
|
|
|
|
|
(define (section-header? line)
|
|
|
|
;; Return #t if the given LINE is a section header, #f otherwise.
|
|
|
|
(string-prefix? "[" (string-trim line)))
|
|
|
|
|
|
|
|
(call-with-input-file requires.txt
|
|
|
|
(lambda (port)
|
2019-03-29 04:12:26 +01:00
|
|
|
(let loop ((required-deps '())
|
|
|
|
(test-deps '())
|
|
|
|
(inside-test-section? #f)
|
|
|
|
(optional? #f))
|
2019-03-28 05:26:00 +01:00
|
|
|
(let ((line (read-line port)))
|
2019-03-28 05:26:03 +01:00
|
|
|
(cond
|
2019-03-29 04:12:26 +01:00
|
|
|
((eof-object? line)
|
2019-03-28 05:26:03 +01:00
|
|
|
;; Duplicates can occur, since the same requirement can be
|
|
|
|
;; listed multiple times with different conditional markers, e.g.
|
|
|
|
;; pytest >= 3 ; python_version >= "3.3"
|
|
|
|
;; pytest < 3 ; python_version < "3.3"
|
2019-03-29 04:12:26 +01:00
|
|
|
(map (compose reverse delete-duplicates)
|
|
|
|
(list required-deps test-deps)))
|
2019-03-28 05:26:03 +01:00
|
|
|
((or (string-null? line) (comment? line))
|
2019-03-29 04:12:26 +01:00
|
|
|
(loop required-deps test-deps inside-test-section? optional?))
|
|
|
|
((section-header? line)
|
|
|
|
;; Encountering a section means that all the requirements
|
|
|
|
;; listed below are optional. Since we want to pick only the
|
|
|
|
;; test dependencies from the optional dependencies, we must
|
|
|
|
;; track those separately.
|
|
|
|
(loop required-deps test-deps (test-section? line) #t))
|
|
|
|
(inside-test-section?
|
|
|
|
(loop required-deps
|
|
|
|
(cons (specification->requirement-name line)
|
|
|
|
test-deps)
|
|
|
|
inside-test-section? optional?))
|
|
|
|
((not optional?)
|
2019-03-28 05:26:03 +01:00
|
|
|
(loop (cons (specification->requirement-name line)
|
2019-03-29 04:12:26 +01:00
|
|
|
required-deps)
|
|
|
|
test-deps inside-test-section? optional?))
|
|
|
|
(optional?
|
|
|
|
;; Skip optional items.
|
|
|
|
(loop required-deps test-deps inside-test-section? optional?))
|
|
|
|
(else
|
|
|
|
(warning (G_ "parse-requires.txt reached an unexpected \
|
|
|
|
condition on line ~a~%") line))))))))
|
2019-03-28 05:26:03 +01:00
|
|
|
|
|
|
|
(define (parse-wheel-metadata metadata)
|
2019-03-29 04:12:26 +01:00
|
|
|
"Given METADATA, a Wheel metadata file, return a list of lists of
|
|
|
|
requirements.
|
|
|
|
|
|
|
|
Refer to the documentation of PARSE-REQUIRES.TXT for a description of the
|
|
|
|
returned value."
|
2019-03-28 05:26:03 +01:00
|
|
|
;; METADATA is a RFC-2822-like, header based file.
|
|
|
|
|
|
|
|
(define (requires-dist-header? line)
|
|
|
|
;; Return #t if the given LINE is a Requires-Dist header.
|
|
|
|
(string-match "^Requires-Dist: " line))
|
|
|
|
|
|
|
|
(define (requires-dist-value line)
|
|
|
|
(string-drop line (string-length "Requires-Dist: ")))
|
|
|
|
|
|
|
|
(define (extra? line)
|
|
|
|
;; Return #t if the given LINE is an "extra" requirement.
|
|
|
|
(string-match "extra == '(.*)'" line))
|
|
|
|
|
2019-03-29 04:12:26 +01:00
|
|
|
(define (test-requirement? line)
|
|
|
|
(and=> (match:substring (extra? line) 1) test-section?))
|
|
|
|
|
2019-03-28 05:26:03 +01:00
|
|
|
(call-with-input-file metadata
|
|
|
|
(lambda (port)
|
2019-03-29 04:12:26 +01:00
|
|
|
(let loop ((required-deps '())
|
|
|
|
(test-deps '()))
|
2019-03-28 05:26:03 +01:00
|
|
|
(let ((line (read-line port)))
|
|
|
|
(cond
|
|
|
|
((eof-object? line)
|
2019-03-29 04:12:26 +01:00
|
|
|
(map (compose reverse delete-duplicates)
|
|
|
|
(list required-deps test-deps)))
|
2019-03-28 05:26:03 +01:00
|
|
|
((and (requires-dist-header? line) (not (extra? line)))
|
|
|
|
(loop (cons (specification->requirement-name
|
|
|
|
(requires-dist-value line))
|
2019-03-29 04:12:26 +01:00
|
|
|
required-deps)
|
|
|
|
test-deps))
|
|
|
|
((and (requires-dist-header? line) (test-requirement? line))
|
|
|
|
(loop required-deps
|
|
|
|
(cons (specification->requirement-name (requires-dist-value line))
|
|
|
|
test-deps)))
|
2019-03-28 05:26:03 +01:00
|
|
|
(else
|
2019-03-29 04:12:26 +01:00
|
|
|
(loop required-deps test-deps)))))))) ;skip line
|
2019-03-28 05:26:00 +01:00
|
|
|
|
2019-03-28 05:26:02 +01:00
|
|
|
(define (guess-requirements source-url wheel-url archive)
|
2019-06-12 04:34:23 +02:00
|
|
|
"Given SOURCE-URL, WHEEL-URL and an ARCHIVE of the package, return a list
|
2019-03-28 05:26:02 +01:00
|
|
|
of the required packages specified in the requirements.txt file. ARCHIVE will
|
2018-08-30 15:02:10 +02:00
|
|
|
be extracted in a temporary directory."
|
2015-02-26 02:07:53 +01:00
|
|
|
|
2015-12-27 03:26:11 +01:00
|
|
|
(define (read-wheel-metadata wheel-archive)
|
|
|
|
;; Given WHEEL-ARCHIVE, a ZIP Python wheel archive, return the package's
|
2019-03-28 05:26:03 +01:00
|
|
|
;; requirements, or #f if the metadata file contained therein couldn't be
|
|
|
|
;; extracted.
|
2015-12-27 03:26:11 +01:00
|
|
|
(let* ((dirname (wheel-url->extracted-directory wheel-url))
|
2019-03-28 05:26:03 +01:00
|
|
|
(metadata (string-append dirname "/METADATA")))
|
|
|
|
(call-with-temporary-directory
|
|
|
|
(lambda (dir)
|
2019-06-12 04:36:39 +02:00
|
|
|
(if (zero?
|
|
|
|
(parameterize ((current-error-port (%make-void-port "rw+"))
|
|
|
|
(current-output-port (%make-void-port "rw+")))
|
|
|
|
(system* "unzip" wheel-archive "-d" dir metadata)))
|
2019-03-28 05:26:03 +01:00
|
|
|
(parse-wheel-metadata (string-append dir "/" metadata))
|
|
|
|
(begin
|
|
|
|
(warning
|
|
|
|
(G_ "Failed to extract file: ~a from wheel.~%") metadata)
|
|
|
|
#f))))))
|
2015-12-27 03:26:11 +01:00
|
|
|
|
|
|
|
(define (guess-requirements-from-wheel)
|
|
|
|
;; Return the package's requirements using the wheel, or #f if an error
|
|
|
|
;; occurs.
|
|
|
|
(call-with-temporary-output-file
|
|
|
|
(lambda (temp port)
|
|
|
|
(if wheel-url
|
2019-03-28 05:26:02 +01:00
|
|
|
(and (url-fetch wheel-url temp)
|
|
|
|
(read-wheel-metadata temp))
|
|
|
|
#f))))
|
2015-12-27 03:26:11 +01:00
|
|
|
|
|
|
|
(define (guess-requirements-from-source)
|
|
|
|
;; Return the package's requirements by guessing them from the source.
|
2019-03-28 05:26:02 +01:00
|
|
|
(if (compressed-file? source-url)
|
|
|
|
(call-with-temporary-directory
|
|
|
|
(lambda (dir)
|
|
|
|
(parameterize ((current-error-port (%make-void-port "rw+"))
|
|
|
|
(current-output-port (%make-void-port "rw+")))
|
|
|
|
(if (string=? "zip" (file-extension source-url))
|
|
|
|
(invoke "unzip" archive "-d" dir)
|
|
|
|
(invoke "tar" "xf" archive "-C" dir)))
|
|
|
|
(let ((requires.txt-files
|
|
|
|
(find-files dir (lambda (abs-file-name _)
|
|
|
|
(string-match "\\.egg-info/requires.txt$"
|
|
|
|
abs-file-name)))))
|
|
|
|
(match requires.txt-files
|
|
|
|
(()
|
|
|
|
(warning (G_ "Cannot guess requirements from source archive:\
|
|
|
|
no requires.txt file found.~%"))
|
2019-03-29 04:12:26 +01:00
|
|
|
(list '() '()))
|
2019-03-28 05:26:02 +01:00
|
|
|
(else (parse-requires.txt (first requires.txt-files)))))))
|
|
|
|
(begin
|
|
|
|
(warning (G_ "Unsupported archive format; \
|
|
|
|
cannot determine package dependencies from source archive: ~a~%")
|
|
|
|
(basename source-url))
|
2019-03-29 04:12:26 +01:00
|
|
|
(list '() '()))))
|
2015-12-27 03:26:11 +01:00
|
|
|
|
2019-03-28 05:26:00 +01:00
|
|
|
;; First, try to compute the requirements using the wheel, else, fallback to
|
|
|
|
;; reading the "requires.txt" from the egg-info directory from the source
|
2019-03-29 04:12:26 +01:00
|
|
|
;; archive.
|
2015-12-27 03:26:11 +01:00
|
|
|
(or (guess-requirements-from-wheel)
|
|
|
|
(guess-requirements-from-source)))
|
|
|
|
|
2019-03-28 05:26:02 +01:00
|
|
|
(define (compute-inputs source-url wheel-url archive)
|
2019-03-29 04:12:26 +01:00
|
|
|
"Given the SOURCE-URL and WHEEL-URL of an already downloaded ARCHIVE, return
|
|
|
|
a pair of lists, each consisting of a list of name/variable pairs, for the
|
|
|
|
propagated inputs and the native inputs, respectively. Also
|
2018-08-30 15:12:07 +02:00
|
|
|
return the unaltered list of upstream dependency names."
|
2019-03-29 04:12:26 +01:00
|
|
|
|
|
|
|
(define (strip-argparse deps)
|
|
|
|
(remove (cut string=? "argparse" <>) deps))
|
|
|
|
|
|
|
|
(define (requirement->package-name/sort deps)
|
|
|
|
(sort
|
|
|
|
(map (lambda (input)
|
|
|
|
(let ((guix-name (python->package-name input)))
|
|
|
|
(list guix-name (list 'unquote (string->symbol guix-name)))))
|
|
|
|
deps)
|
|
|
|
(lambda args
|
|
|
|
(match args
|
|
|
|
(((a _ ...) (b _ ...))
|
|
|
|
(string-ci<? a b))))))
|
|
|
|
|
|
|
|
(define process-requirements
|
|
|
|
(compose requirement->package-name/sort strip-argparse))
|
|
|
|
|
|
|
|
(let ((dependencies (guess-requirements source-url wheel-url archive)))
|
|
|
|
(values (map process-requirements dependencies)
|
|
|
|
(concatenate dependencies))))
|
2014-09-27 16:16:23 +02:00
|
|
|
|
2015-12-27 03:26:11 +01:00
|
|
|
(define (make-pypi-sexp name version source-url wheel-url home-page synopsis
|
2014-09-27 16:16:23 +02:00
|
|
|
description license)
|
|
|
|
"Return the `package' s-expression for a python package with the given NAME,
|
|
|
|
VERSION, SOURCE-URL, HOME-PAGE, SYNOPSIS, DESCRIPTION, and LICENSE."
|
2015-02-26 02:07:53 +01:00
|
|
|
(call-with-temporary-output-file
|
|
|
|
(lambda (temp port)
|
|
|
|
(and (url-fetch source-url temp)
|
2019-03-29 04:12:26 +01:00
|
|
|
(receive (guix-dependencies upstream-dependencies)
|
2018-08-30 15:12:07 +02:00
|
|
|
(compute-inputs source-url wheel-url temp)
|
2019-03-29 04:12:26 +01:00
|
|
|
(match guix-dependencies
|
|
|
|
((required-inputs test-inputs)
|
|
|
|
(values
|
|
|
|
`(package
|
|
|
|
(name ,(python->package-name name))
|
|
|
|
(version ,version)
|
2019-03-31 01:27:35 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
;; PyPI URL are case sensitive, but sometimes a project
|
|
|
|
;; named using mixed case has a URL using lower case, so
|
|
|
|
;; we must work around this inconsistency. For actual
|
|
|
|
;; examples, compare the URLs of the "Deprecated" and
|
|
|
|
;; "uWSGI" PyPI packages.
|
|
|
|
(uri ,(if (string-contains source-url name)
|
|
|
|
`(pypi-uri ,name version)
|
|
|
|
`(pypi-uri ,(string-downcase name) version)))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
,(guix-hash-url temp)))))
|
2019-03-29 04:12:26 +01:00
|
|
|
(build-system python-build-system)
|
|
|
|
,@(maybe-inputs required-inputs 'propagated-inputs)
|
|
|
|
,@(maybe-inputs test-inputs 'native-inputs)
|
|
|
|
(home-page ,home-page)
|
|
|
|
(synopsis ,synopsis)
|
|
|
|
(description ,description)
|
|
|
|
(license ,(license->symbol license)))
|
|
|
|
upstream-dependencies))))))))
|
2014-09-27 16:16:23 +02:00
|
|
|
|
2018-08-30 15:12:07 +02:00
|
|
|
(define pypi->guix-package
|
|
|
|
(memoize
|
|
|
|
(lambda* (package-name)
|
|
|
|
"Fetch the metadata for PACKAGE-NAME from pypi.org, and return the
|
2014-11-05 17:56:39 +01:00
|
|
|
`package' s-expression corresponding to that package, or #f on failure."
|
2018-08-30 15:12:07 +02:00
|
|
|
(let ((package (pypi-fetch package-name)))
|
|
|
|
(and package
|
|
|
|
(guard (c ((missing-source-error? c)
|
|
|
|
(let ((package (missing-source-error-package c)))
|
|
|
|
(leave (G_ "no source release for pypi package ~a ~a~%")
|
|
|
|
(assoc-ref* package "info" "name")
|
|
|
|
(assoc-ref* package "info" "version")))))
|
|
|
|
(let ((name (assoc-ref* package "info" "name"))
|
|
|
|
(version (assoc-ref* package "info" "version"))
|
|
|
|
(release (assoc-ref (latest-source-release package) "url"))
|
|
|
|
(wheel (assoc-ref (latest-wheel-release package) "url"))
|
|
|
|
(synopsis (assoc-ref* package "info" "summary"))
|
|
|
|
(description (assoc-ref* package "info" "summary"))
|
|
|
|
(home-page (assoc-ref* package "info" "home_page"))
|
|
|
|
(license (string->license (assoc-ref* package "info" "license"))))
|
|
|
|
(make-pypi-sexp name version release wheel home-page synopsis
|
|
|
|
description license))))))))
|
|
|
|
|
|
|
|
(define (pypi-recursive-import package-name)
|
|
|
|
(recursive-import package-name #f
|
|
|
|
#:repo->guix-package (lambda (name repo)
|
|
|
|
(pypi->guix-package name))
|
|
|
|
#:guix-name python->package-name))
|
2015-11-03 22:38:49 +01:00
|
|
|
|
2016-09-22 11:30:17 +02:00
|
|
|
(define (string->license str)
|
|
|
|
"Convert the string STR into a license object."
|
|
|
|
(match str
|
|
|
|
("GNU LGPL" license:lgpl2.0)
|
|
|
|
("GPL" license:gpl3)
|
|
|
|
((or "BSD" "BSD License") license:bsd-3)
|
|
|
|
((or "MIT" "MIT license" "Expat license") license:expat)
|
|
|
|
("Public domain" license:public-domain)
|
|
|
|
((or "Apache License, Version 2.0" "Apache 2.0") license:asl2.0)
|
|
|
|
(_ #f)))
|
|
|
|
|
2015-11-03 22:38:49 +01:00
|
|
|
(define (pypi-package? package)
|
|
|
|
"Return true if PACKAGE is a Python package from PyPI."
|
|
|
|
|
|
|
|
(define (pypi-url? url)
|
2018-07-23 00:25:34 +02:00
|
|
|
(or (string-prefix? "https://pypi.org/" url)
|
|
|
|
(string-prefix? "https://pypi.python.org/" url)
|
2018-10-13 05:47:15 +02:00
|
|
|
(string-prefix? "https://pypi.org/packages" url)))
|
2015-11-03 22:38:49 +01:00
|
|
|
|
|
|
|
(let ((source-url (and=> (package-source package) origin-uri))
|
|
|
|
(fetch-method (and=> (package-source package) origin-method)))
|
|
|
|
(and (eq? fetch-method download:url-fetch)
|
|
|
|
(match source-url
|
|
|
|
((? string?)
|
|
|
|
(pypi-url? source-url))
|
|
|
|
((source-url ...)
|
|
|
|
(any pypi-url? source-url))))))
|
|
|
|
|
2016-04-14 21:40:20 +02:00
|
|
|
(define (latest-release package)
|
|
|
|
"Return an <upstream-source> for the latest release of PACKAGE."
|
2017-05-04 11:57:50 +02:00
|
|
|
(let* ((pypi-name (guix-package->pypi-name package))
|
|
|
|
(pypi-package (pypi-fetch pypi-name)))
|
|
|
|
(and pypi-package
|
|
|
|
(guard (c ((missing-source-error? c) #f))
|
|
|
|
(let* ((metadata pypi-package)
|
|
|
|
(version (assoc-ref* metadata "info" "version"))
|
|
|
|
(url (assoc-ref (latest-source-release metadata) "url")))
|
|
|
|
(upstream-source
|
|
|
|
(package (package-name package))
|
|
|
|
(version version)
|
|
|
|
(urls (list url))))))))
|
2015-11-03 22:38:49 +01:00
|
|
|
|
|
|
|
(define %pypi-updater
|
|
|
|
(upstream-updater
|
|
|
|
(name 'pypi)
|
|
|
|
(description "Updater for PyPI packages")
|
|
|
|
(pred pypi-package?)
|
|
|
|
(latest latest-release)))
|