From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:33833) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gnO9w-0004a8-JF for guix-patches@gnu.org; Sat, 26 Jan 2019 08:38:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gnO9u-0006vn-JE for guix-patches@gnu.org; Sat, 26 Jan 2019 08:38:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46618) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gnO9p-0006qm-SK for guix-patches@gnu.org; Sat, 26 Jan 2019 08:38:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gnO9p-0006bU-LN for guix-patches@gnu.org; Sat, 26 Jan 2019 08:38:01 -0500 Subject: [bug#34204] [PATCH 3/3] gnu: Add Mkdocs. Resent-Message-ID: References: <20190126002849.7707-1-mthl@gnu.org> <20190126002849.7707-3-mthl@gnu.org> From: Ricardo Wurmus In-reply-to: <20190126002849.7707-3-mthl@gnu.org> Date: Sat, 26 Jan 2019 14:37:37 +0100 Message-ID: <874l9vv8ta.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Mathieu Lirzin Cc: 34204@debbugs.gnu.org Hi Mathieu, > * gnu/packages/documentation.scm (mkdocs): New variable. [=E2=80=A6] > + > +(define-public mkdocs > + (package > + (name "mkdocs") > + (version "1.0.4") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "mkdocs" version)) > + (sha256 > + (base32 > + "0fg9w6rdskwnn7knri7xzrd26k9svwqlxvdr0kk5spfpm8ll7lqp")))) > + (build-system python-build-system) > + (arguments > + ;; XXX: Tests are failing. > + ;; AttributeError: module 'mkdocs.plugins' has no attribute 'get_pl= ugins' > + '(#:tests? #f)) Hmm, any idea why this happens? Are the plugins not included? Is there an upstream bug report about this? Other than that it looks good to me. --=20 Ricardo