guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: python-rapidjson: Use pyproject-build-system.


From: guix-commits
Subject: 03/03: gnu: python-rapidjson: Use pyproject-build-system.
Date: Sat, 13 May 2023 05:06:08 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 23ca566e746da7f83d565137e2bb1c9f95cfdd65
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat May 13 11:02:08 2023 +0200

    gnu: python-rapidjson: Use pyproject-build-system.
    
    * gnu/packages/python-web.scm (python-rapidjson)[build-system]: Use
    pyproject-build-system.
    [arguments]: Do not use custom 'build and 'check phases.
---
 gnu/packages/python-web.scm | 32 +++++++++++++++-----------------
 1 file changed, 15 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 1e893723a7..dbd6e98730 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6168,24 +6168,22 @@ major web browsers.")
         (modules '((guix build utils)))
         (snippet
          '(delete-file-recursively "rapidjson"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (arguments
-     `(#:configure-flags
-       (list (string-append "--rj-include-dir="
-                            (assoc-ref %build-inputs "rapidjson")
-                            "/include/rapidjson"))
-       #:phases
-       (modify-phases %standard-phases
-         (replace 'build
-           (lambda* (#:key inputs #:allow-other-keys)
-             (invoke "python" "setup.py" "build"
-                     (string-append "--rj-include-dir="
-                                    (assoc-ref %build-inputs "rapidjson")
-                                    "/include/rapidjson"))))
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (invoke "python" "-m" "pytest" "tests")))))))
+     (list
+      #:test-flags '(list "tests")
+      #:phases
+      #~(modify-phases %standard-phases
+          ;; We cannot seem to use #:configure-flags with the
+          ;; pyproject-build-system to override rj_include_dir.
+          (add-after 'unpack 'override-rapidjson-sources
+            (lambda _
+              (substitute* "setup.py"
+                (("^rj_include_dir =.*")
+                 (string-append "rj_include_dir = '"
+                                #$(this-package-native-input "rapidjson")
+                                "/include/rapidjson" "'"))
+                (("if not os.path.isdir.*") "if False:")))))))
     (native-inputs
      (list rapidjson python-pytest python-pytz))
     (home-page "https://github.com/python-rapidjson/python-rapidjson";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]