From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 02 19:19:13 2022 Received: (at submit) by debbugs.gnu.org; 3 Jan 2022 00:19:13 +0000 Received: from localhost ([127.0.0.1]:33919 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n4B4D-0002MW-DF for submit@debbugs.gnu.org; Sun, 02 Jan 2022 19:19:13 -0500 Received: from lists.gnu.org ([209.51.188.17]:35488) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n4B4B-0002MO-52 for submit@debbugs.gnu.org; Sun, 02 Jan 2022 19:19:11 -0500 Received: from eggs.gnu.org ([209.51.188.92]:35854) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n4B49-0004Gd-9Q for guix-patches@gnu.org; Sun, 02 Jan 2022 19:19:09 -0500 Received: from latitanza.investici.org ([82.94.249.234]:28629) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n4B47-00007G-8Q for guix-patches@gnu.org; Sun, 02 Jan 2022 19:19:08 -0500 Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4JRxDw0MCszGp4L; Mon, 3 Jan 2022 00:18:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1641169136; bh=AudKpi5VAyIU7mzt99xobufd1qCDXJYnu+TOlHsqyZA=; h=From:To:Cc:Subject:Date:From; b=e5vt1gBPtT70lzDholdGzvXdmXFtvHVht4DmQ+6M79olUnzVyNTyLT+ChPXNlywQt 05ZCzha7jRNx4qVv0YNx5dIyW1Zab9e3wKjLUgPDa+85xVWQu1Q8XMD2t7IMW9p7Gk j2Mqm26yy98TBXmwEbNGudazmRLOSJoh8qcES1Qg= Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4JRxDv6Y0pzGp3m; Mon, 3 Jan 2022 00:18:55 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-markdownify. Date: Mon, 3 Jan 2022 01:18:35 +0100 Message-Id: <20220103001835.29311-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=82.94.249.234; envelope-from=goodoldpaul@autistici.org; helo=latitanza.investici.org X-Spam_score_int: -1 X-Spam_score: -0.2 X-Spam_bar: / X-Spam_report: (-0.2 / 5.0 requ) DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=unavailable autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/markup.scm (python-markdownify): New variable. --- gnu/packages/markup.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index cee3207ee5..5f2f525cd2 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -37,11 +37,13 @@ (define-module (gnu packages markup) #:use-module (guix build-system python) #:use-module (guix utils) #:use-module (gnu packages base) + #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) + #:use-module (gnu packages python-xyz) #:use-module (gnu packages web)) (define-public hoedown @@ -237,6 +239,29 @@ (define-public perl-text-markdown-discount @end example") (license license:perl-license))) +(define-public python-markdownify + (package + (name "python-markdownify") + (version "0.10.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "markdownify" version)) + (sha256 + (base32 + "0msvrsgq9jigbgg7r7iq7ql5bgslmbxd8sq0nmpbxrjwqypgs7w2")))) + (build-system python-build-system) + (native-inputs + (list python-pytest)) + (propagated-inputs + (list python-flake8 python-beautifulsoup4 python-six)) + (home-page + "https://github.com/matthewwithanm/python-markdownify") + (synopsis "Converts HTML to Markdown") + (description "This package provides @code{markdownify} a Python library to +convert HTML to Markdown.") + (license license:expat))) + (define-public cmark (package (name "cmark") base-commit: 01ec5efff7cf95cae69493bd4ccfdd21a38770ae -- 2.34.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 08 17:07:27 2022 Received: (at 52970-done) by debbugs.gnu.org; 8 Jan 2022 22:07:27 +0000 Received: from localhost ([127.0.0.1]:48844 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n6Jrz-0001UG-28 for submit@debbugs.gnu.org; Sat, 08 Jan 2022 17:07:27 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:52708) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n6Jrx-0001Tx-Og for 52970-done@debbugs.gnu.org; Sat, 08 Jan 2022 17:07:26 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 441092A1; Sat, 8 Jan 2022 23:07:19 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qA94McrUVROf; Sat, 8 Jan 2022 23:07:18 +0100 (CET) Received: from ribbon (unknown [IPv6:2a01:e0a:1d:7270:af76:b9b:ca24:c465]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 7FAAC283; Sat, 8 Jan 2022 23:07:18 +0100 (CET) From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Giacomo Leidi Subject: Re: bug#52970: [PATCH] gnu: Add python-markdownify. References: <20220103001835.29311-1-goodoldpaul@autistici.org> Date: Sat, 08 Jan 2022 23:07:18 +0100 In-Reply-To: <20220103001835.29311-1-goodoldpaul@autistici.org> (Giacomo Leidi's message of "Mon, 3 Jan 2022 01:18:35 +0100") Message-ID: <874k6d3mqx.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spamd-Bar: / Authentication-Results: hera.aquilenet.fr; none X-Rspamd-Server: hera X-Rspamd-Queue-Id: 441092A1 X-Spamd-Result: default: False [-0.10 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; RCPT_COUNT_TWO(0.00)[2]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 52970-done Cc: 52970-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Hi, Giacomo Leidi skribis: > * gnu/packages/markup.scm (python-markdownify): New variable. Applied, thanks! Ludo=E2=80=99. From unknown Mon Aug 11 13:50:28 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 06 Feb 2022 12:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator