summaryrefslogtreecommitdiff
path: root/guix/build-system/pyproject.scm
blob: b7a3a1c0c99ec3a55db858651a47e9bc45e5aa3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2021 Lars-Dominik Braun <lars@6xq.net>
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
;;;
;;; 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 build-system pyproject)
  #:use-module ((gnu packages) #:select (search-auxiliary-file))
  #:use-module (guix gexp)
  #:use-module (guix store)
  #:use-module (guix utils)
  #:use-module (guix gexp)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix monads)
  #:use-module (guix packages)
  #:use-module (guix search-paths)
  #:use-module (guix build-system)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system trivial)
  #:use-module (srfi srfi-1)
  #:use-module (ice-9 match)
  #:export (%pyproject-build-system-modules
            default-pytest-guix-plugin
            default-python
            default-sanity-check.py
            pypi-uri
            pyproject-build
            pyproject-build-system
            pyproject-guile-json))

;; Commentary:
;;
;; Standard build procedure for Python packages using 'pyproject.toml'.
;; This is implemented as an extension of 'python-build-system'.
;;
;; Code:

(define* (pypi-uri name version #:optional (extension ".tar.gz"))
  "Return a URI string for the Python package hosted on the Python Package
Index (PyPI) corresponding to NAME and VERSION.  EXTENSION is the file name
extension, such as '.tar.gz'."
  (string-append "https://files.pythonhosted.org/packages/source/"
                 (string-take name 1) "/" name "/"
                 name "-" version extension))

(define %pyproject-build-system-modules
  ;; Build-side modules imported by default.
  `((guix build pyproject-build-system)
    (guix build toml)
    ,@%default-gnu-imported-modules))

(define (default-python)
  "Return the default Python package, resolved lazily."
  ;; We are using python-sans-pip-wrapper, because it does not contain
  ;; setuptools. This allows us to skip the dependency on setuptools for
  ;; packages which don’t need it. And it allows us to more easily swap
  ;; out setuptools if a different version is required.
  (@* (gnu packages python) python-sans-pip-wrapper))

(define (pyproject-guile-json)
  "Return the default guile-json package, resolved lazily."
  (@* (gnu packages guile) guile-json-4))

;; Maybe try to upstream it at some point, it's currently flavored for guix
;; but the idea itself is more general.
(define (default-pytest-guix-plugin python)
  (let* ((effective (version-major+minor (package-version python)))
         (site (string-append "lib/python" effective "/site-packages/")))
    (package
      (name "python-pytest-guix")
      (version "0.0.1")
      (source (local-file (search-auxiliary-file "python/pytest_guix.py")))
      (build-system trivial-build-system)
      (arguments
       (list
        #:modules '((guix build utils))
        #:builder
        #~(begin
            (use-modules (guix build utils))
            (let* ((site (string-append #$output "/" #$site))
                   (dist (string-append site "pytest_guix-" #$version
                                        ".dist.info")))
              (mkdir-p dist)
              (copy-file #$source (string-append site "/pytest_guix.py"))
              (call-with-output-file (string-append dist "/entry_points.txt")
                (lambda (port)
                  (format port "[pytest11]~%guix=pytest_guix~%")))))))
      (home-page "https://guix.gnu.org/")
      (synopsis "Ignore selected pytest options")
      (description
       "This package provides the script to cleanly ignore pytest options at the
build-system level.")
      (license license:gpl3+))))

(define %default-pytest-guix-options
  ;; Guile keyword arguments are translated to Python keyword arguments
  ;; and passed to `group.addoption'. pytest_guix assumes default options
  ;; '(#:action "append" #:nargs "?")
  ;; It is required to store at least the store_const and store_true actions
  ;; to ensure boolean args are not eating the next argument, but it is not
  ;; necessary to do more than that so keep it minimal for maintainability.
  #~'(("cov"
       ("--cov")
       ("--cov-reset" #:action "store_const")
       ("--cov-report")
       ("--cov-config")
       ("--no-cov-on-fail" #:action "store_true")
       ("--no-cov" #:action "store_true")
       ("--cov-fail-under")
       ("--cov-append" #:action "store_true")
       ("--cov-branch" #:action "store_true")
       ("--cov-precision")
       ("--cov-context"))
      ("html"
       ("--html")
       ("--self-contained-html" #:action "store_true")
       ("--css"))
      ("mypy"
       ("--mypy" #:action "store_true")
       ("--mypy-ignore-missing-imports" #:action "store_true")
       ("--mypy-config-file")
       ("--mypy-report-style")
       ("--mypy-no-status-check" #:action "store_true")
       ("--mypy-xfail" #:action "store_true"))
      ("isort"  ("--isort"  #:action "store_true"))
      ("flake8" ("--flake8" #:action "store_true"))
      ("black"  ("--black"  #:action "store_true"))
      ("flakes" ("--flakes" #:action "store_true"))
      ("pep8"   ("--pep8"   #:action "store_true"))))

;; TODO: On the next iteration of python-team, migrate the sanity-check to
;; importlib_metadata instead of setuptools.
(define (default-sanity-check.py)
  (local-file (search-auxiliary-file "python/sanity-check.py")))

(define* (lower name
                #:key source inputs native-inputs outputs system target
                test-backend
                (python (default-python))
                (python-pytest-guix (default-pytest-guix-plugin python))
                (sanity-check.py (default-sanity-check.py))
                #:allow-other-keys
                #:rest arguments)
  "Return a bag for NAME."
  (define private-keywords
    '(#:target #:python #:inputs #:native-inputs
      #:python-pytest-guix #:sanity-check.py))
  (define native-inputs-labels (map car native-inputs))
  (define has-pytest?
    (or (member "python-pytest-bootstrap" native-inputs-labels)
        (member "python-pytest" native-inputs-labels)))


  (and (not target)                               ;XXX: no cross-compilation
       (bag
         (name name)
         (system system)
         (host-inputs `(,@(if source
                              `(("source" ,source))
                              '())
                        ,@inputs

                        ;; Keep the standard inputs of 'gnu-build-system'.
                        ,@(standard-packages)))
         (build-inputs
          `(("python" ,python)
            ("sanity-check.py" ,sanity-check.py)
            ,@(if (and has-pytest?
                       (match test-backend
                         ((or 'pytest-with-guix-plugin #f) #t)
                         (_ #f)))
                  `(("python-pytest-guix" ,python-pytest-guix))
                  `())
            ,@native-inputs))
         (outputs (append outputs '(wheel)))
         (build pyproject-build)
         (arguments (strip-keyword-arguments private-keywords arguments)))))

(define* (pyproject-build name inputs
                          #:key source
                          (tests? #t)
                          (configure-flags ''())
                          (backend-path #f)
                          (build-backend #f)
                          (test-backend #f)
                          (test-flags ''())
                          (pytest-guix-options %default-pytest-guix-options)
                          (phases '%standard-phases)
                          (outputs '("out" "wheel"))
                          (search-paths '())
                          (system (%current-system))
                          (guile #f)
                          (guile-json (pyproject-guile-json))
                          (imported-modules %pyproject-build-system-modules)
                          (modules '((guix build pyproject-build-system)
                                     (guix build utils)))
                          allowed-references
                          disallowed-references)
  "Build SOURCE using PYTHON, and with INPUTS."
  (define build
    (with-extensions (list guile-json)
      (with-imported-modules imported-modules
        #~(begin
            (use-modules #$@(sexp->gexp modules))

            #$(with-build-variables inputs outputs
                #~(pyproject-build
                   #:name #$name
                   #:source #+source
                   #:configure-flags #$configure-flags
                   #:system #$system
                   #:backend-path #$backend-path
                   #:build-backend #$build-backend
                   #:test-backend #$test-backend
                   #:test-flags #$test-flags
                   #:tests? #$tests?
                   #$@(let ((labels (map car inputs)))
                        (if (or (member "python-pytest-bootstrap" labels)
                                (member "python-pytest" labels))
                            #~(#:pytest-guix-options #$pytest-guix-options)
                            #~()))
                   #:phases #$(if (pair? phases)
                                  (sexp->gexp phases)
                                  phases)
                   #:outputs %outputs
                   #:search-paths '#$(sexp->gexp
                                      (map search-path-specification->sexp
                                           search-paths))
                   #:inputs %build-inputs))))))


  (mlet %store-monad ((guile (package->derivation (or guile (default-guile))
                                                  system #:graft? #f)))
    (gexp->derivation name build
                      #:system system
                      #:graft? #f                 ;consistent with 'gnu-build'
                      #:target #f
                      #:guile-for-build guile
                      #:allowed-references allowed-references
                      #:disallowed-references disallowed-references)))

(define pyproject-build-system
  (build-system
    (name 'pyproject)
    (description "The PEP517-compliant Python build system")
    (lower lower)))

;;; pyproject.scm ends here