lbraun pushed a commit to branch wip-python-pep517
in repository guix.

commit 465312c28e44263d87ec2494c8917e3674e39e73
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Wed Dec 29 09:54:58 2021 +0100

    gnu: python-apsw: Remove custom 'build phase.
    
    Not required any more.
    
    * gnu/packages/databases.scm (python-apsw)[#:phases]: Remove custom
    'build phase.
---
 gnu/packages/databases.scm | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 4472677ab3..c734b9bd4c 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -3576,11 +3576,6 @@ PickleShare.")
     (arguments
      `(#:phases
        (modify-phases %standard-phases
-         (replace 'build
-           (lambda _
-             (invoke "python" "setup.py" "build" "--enable-all-extensions"
-                     "--enable=load_extension")
-             #t))
          (add-after 'build 'build-test-helper
            (lambda _
              (invoke "gcc" "-fPIC" "-shared" "-o" "./testextension.sqlext"
@@ -3588,7 +3583,6 @@ PickleShare.")
              #t))
          (replace 'check
            (lambda* (#:key inputs outputs #:allow-other-keys)
-             (add-installed-pythonpath inputs outputs)
              (invoke "python" "setup.py" "test")
              #t)))))
     (home-page "https://github.com/rogerbinns/apsw/";)

Reply via email to