From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jesse Gibbons Subject: bug#35625: Python3 Cannot Find Existing Shared Library within guix environment Date: Tue, 7 May 2019 16:32:11 -0600 Message-ID: <20190507163211.53a415fe@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([209.51.188.92]:54092) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hO8dz-00086x-T3 for bug-guix@gnu.org; Tue, 07 May 2019 18:33:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hO8dy-0008FM-J0 for bug-guix@gnu.org; Tue, 07 May 2019 18:33:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46370) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hO8dy-0008Er-FR for bug-guix@gnu.org; Tue, 07 May 2019 18:33:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hO8dy-0006eI-A4 for bug-guix@gnu.org; Tue, 07 May 2019 18:33:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:53945) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hO8dQ-00083x-PV for bug-Guix@gnu.org; Tue, 07 May 2019 18:32:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hO8dG-0005in-TO for bug-Guix@gnu.org; Tue, 07 May 2019 18:32:24 -0400 Received: from mail-pl1-x631.google.com ([2607:f8b0:4864:20::631]:36994) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hO8dG-0005Wh-L5 for bug-Guix@gnu.org; Tue, 07 May 2019 18:32:18 -0400 Received: by mail-pl1-x631.google.com with SMTP id p15so1677530pll.4 for ; Tue, 07 May 2019 15:32:16 -0700 (PDT) Received: from localhost ([199.68.53.171]) by smtp.gmail.com with ESMTPSA id x30sm1702014pgl.76.2019.05.07.15.32.12 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 07 May 2019 15:32:13 -0700 (PDT) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: bug-Guix@gnu.org I brought this to the help mailing list, and now I see it as a particular bug in guix. When I change into a guix environment and try to run a Python project that uses the WebKitGTK2 library, it cannot find the specified shared library, even though it is in $LIBRARY_PATH. As a result, the project crashes. This does not happen when I call guix build. On a side note, guix build fails due to another error (possibly related). Thanks in advance for looking into this. -Jesse Package Definition: #! see https://github.com/jendrikseipp/rednotebook !# (define-module (custom packages rednotebook) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system python) #:use-module (guix licenses)) (define-public rednotebook (package (name "rednotebook") (version "2.11.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/jendrikseipp/rednotebook/archive/v" version ".tar.gz")) (sha256 (base32 "15n1ziypfj3lzpvhha7r637zrb259l9yrcsvkic9cg5mndiaivs3")))) (build-system python-build-system) (inputs `(("python" ,(@ (gnu packages python) python-3)))) (propagated-inputs `(("python-pygobject" ,(@ (gnu packages glib) python-pygobject)) ("gtk+" ,(@ (gnu packages gtk) gtk+)) ("gtksourceview" ,(@ (gnu packages gtk) gtksourceview-3)) ("webkitgtk" ,(@ (gnu packages webkit) webkitgtk-2.24)) ("python-pyyaml" ,(@ (gnu packages python-xyz) python-pyyaml)))) (home-page "https://www.rednotebook.app") (synopsis #f) (description "RedNotebook is a modern desktop journal. It lets you format, tag and search your entries. You can also add pictures, links and customizable templates, spell check your notes, and export to plain text, HTML, Latex or PDF.") (license gpl2+)) ) Program log (streams merged): Adding /home/jesse/Documents/rednotebook/rednotebook-2.11.1 to sys.path 2019-05-07 16:15:41,122 INFO Writing log to file "/home/jesse/.rednotebook/rednotebook.log" 2019-05-07 16:15:41,122 INFO System encoding: utf-8 2019-05-07 16:15:41,122 INFO Language code: None rednotebook/journal.py:161: PyGIDeprecationWarning: Since version 3.11, calling threads_init is no longer needed. See: https://wiki.gnome.org/PyGObject/Threading GObject.threads_init() 2019-05-07 16:15:41,182 WARNING For spell checking, please install enchant (python3-enchant). ** (journal.py:2179): WARNING **: 16:15:41.209: Failed to load shared library 'libwebkit2gtk-4.0.so.37' referenced by the typelib: libwebkit2gtk-4.0.so.37: cannot open shared object file: No such file or directory ** (journal.py:2179): WARNING **: 16:15:41.209: Failed to load shared library 'libjavascriptcoregtk-4.0.so.18' referenced by the typelib: libjavascriptcoregtk-4.0.so.18: cannot open shared object file: No such file or directory /gnu/store/kz1d84nv5rlqdf415i16wz8zvf492l1c-profile/lib/python3.7/site-packages/gi/types.py:226: Warning: cannot derive 'rednotebook+gui+browser+Browser' from non-derivable parent type 'void' _gi.type_register(cls, namespace.get('__gtype_name__')) Traceback (most recent call last): File "rednotebook/journal.py", line 168, in from rednotebook.gui.main_window import MainWindow File "/home/jesse/Documents/rednotebook/rednotebook-2.11.1/rednotebook/gui/main_window.py", line 45, in from rednotebook.gui import browser File "/home/jesse/Documents/rednotebook/rednotebook-2.11.1/rednotebook/gui/browser.py", line 41, in class Browser(WebKit2.WebView): File "/gnu/store/kz1d84nv5rlqdf415i16wz8zvf492l1c-profile/lib/python3.7/site-packages/gi/types.py", line 235, in __init__ super(GObjectMeta, cls).__init__(name, bases, dict_) File "/gnu/store/kz1d84nv5rlqdf415i16wz8zvf492l1c-profile/lib/python3.7/site-packages/gi/types.py", line 214, in __init__ cls._type_register(cls.__dict__) File "/gnu/store/kz1d84nv5rlqdf415i16wz8zvf492l1c-profile/lib/python3.7/site-packages/gi/types.py", line 226, in _type_register _gi.type_register(cls, namespace.get('__gtype_name__')) RuntimeError: could not create new GType: rednotebook+gui+browser+Browser (subclass of void)