guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: buku: Fix build.


From: guix-commits
Subject: branch master updated: gnu: buku: Fix build.
Date: Sun, 19 Dec 2021 16:19:37 -0500

This is an automated email from the git hooks/post-receive script.

lilyp pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 9b38d9b  gnu: buku: Fix build.
9b38d9b is described below

commit 9b38d9b3b34edb55f7f42b72a611b39e5164cf9f
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun Dec 19 22:17:20 2021 +0100

    gnu: buku: Fix build.
    
    * gnu/packages/web.scm (buku)[origin]: Drop file-name.
    [arguments]: Drop sanity-check.
    [inputs]: Add python-flask.
---
 gnu/packages/web.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 9442b65..c8d08b3 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -7599,15 +7599,18 @@ HTTrack is fully configurable, and has an integrated 
help system.")
      (origin
        (method url-fetch)
        (uri (pypi-uri "buku" version))
-       (file-name (git-file-name name version))
        (sha256
         (base32 "1n4d1mkjyvzdxbyq067p1p9skb3iwx0msd86nzr224dlqrfh9675"))))
     (build-system python-build-system)
     (arguments
-     `(#:tests? #f))                    ;FIXME: many tests need network access
+     `(#:tests? #f                     ; FIXME: many tests need network access
+       #:phases
+       (modify-phases %standard-phases
+         ;; XXX: missing inputs, e.g. python-flask-admin
+         (delete 'sanity-check))))
     (inputs
      (list python-beautifulsoup4 python-certifi python-cryptography
-           python-html5lib python-urllib3))
+           python-flask python-html5lib python-urllib3))
     (home-page "https://github.com/jarun/buku";)
     (synopsis "Bookmark manager")
     (description



reply via email to

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