From unknown Sat Aug 09 13:00:31 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#53508 <53508@debbugs.gnu.org> To: bug#53508 <53508@debbugs.gnu.org> Subject: Status: [PATCH] [PATCH] Add the package: python-multipart Reply-To: bug#53508 <53508@debbugs.gnu.org> Date: Sat, 09 Aug 2025 20:00:31 +0000 retitle 53508 [PATCH] [PATCH] Add the package: python-multipart reassign 53508 guix-patches submitter 53508 Pierre-Henry Fr=C3=B6hring severity 53508 normal tag 53508 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 24 12:36:49 2022 Received: (at submit) by debbugs.gnu.org; 24 Jan 2022 17:36:50 +0000 Received: from localhost ([127.0.0.1]:45645 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nC3Gr-0000H9-Mt for submit@debbugs.gnu.org; Mon, 24 Jan 2022 12:36:49 -0500 Received: from lists.gnu.org ([209.51.188.17]:40980) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nC3Gp-0000H1-T7 for submit@debbugs.gnu.org; Mon, 24 Jan 2022 12:36:48 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59932) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nC3Gp-0005PX-KY for guix-patches@gnu.org; Mon, 24 Jan 2022 12:36:47 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:48747) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nC3Gk-0002H9-MG for guix-patches@gnu.org; Mon, 24 Jan 2022 12:36:47 -0500 Received: (Authenticated sender: contact@phfrohring.com) by mail.gandi.net (Postfix) with ESMTPSA id CE27D60002; Mon, 24 Jan 2022 17:35:38 +0000 (UTC) From: =?UTF-8?q?Pierre-Henry=20Fr=C3=B6hring?= To: guix-patches@gnu.org Subject: [PATCH] [PATCH] Add the package: python-multipart Date: Mon, 24 Jan 2022 18:34:33 +0100 Message-Id: <20220124173433.293164-1-contact@phfrohring.com> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.183.195; envelope-from=contact@phfrohring.com; helo=relay3-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Pierre-Henry=20Fr=C3=B6hring?= 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.6 (--) From: Pierre-Henry Fröhring --- gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8bd5f65..1a47f89 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28768,3 +28768,29 @@ implementation, so that it supports any Galois field higher than 2^3, but not binary streams.") (license license:public-domain))) +(define-public python-multipart + (package + (name "python-multipart") + (version "0.0.5") + (source (origin + (method url-fetch) + (uri (pypi-uri "python-multipart" version)) + (sha256 + (base32 + "0hzshd665rl1bkwvaj9va4j3gs8nmb478fbvligx20663xhmzfzp")))) + (build-system python-build-system) + (propagated-inputs (list python-six)) + (native-inputs (list python-pyyaml python-mock python-pytest-cov)) + (arguments + `(#:phases (modify-phases %standard-phases + ;; There is a bug in the test_suit specification. + (add-after 'unpack 'patch-test-suite + (lambda _ + (substitute* "setup.py" + (("test_suite = 'multipart.tests.suite'") + "test_suite = 'multipart.tests.test_multipart.suite'"))))))) + (home-page "https://github.com/andrew-d/python-multipart") + (synopsis "Streaming multipart parser for Python") + (description + "This package provides a streaming multipart parser for Python") + (license license:asl2.0))) 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 07 15:49:56 2022 Received: (at 53508-done) by debbugs.gnu.org; 7 Mar 2022 20:49:57 +0000 Received: from localhost ([127.0.0.1]:54690 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRKIm-0003sL-Lu for submit@debbugs.gnu.org; Mon, 07 Mar 2022 15:49:56 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52070) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRKIl-0003s6-7I for 53508-done@debbugs.gnu.org; Mon, 07 Mar 2022 15:49:55 -0500 Received: from [2001:470:142:3::e] (port=51644 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nRKIf-0004DQ-1K; Mon, 07 Mar 2022 15:49:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=SBg7PSrFvk0pl8Q25pYW+WArsrWHplkd+SDbFRJm1CI=; b=dirLANn07o/fl61BeumR kFv1tekxYbYNGqjcxXe2q1dKR0lSxmjGMx28hTGWcFmwohmE1MWpc/WtdGzKkC18qElLU+z5xJ93p EWpYT3so9oB58xhSAth7T7PsAscPjNnnLfa40DJb4Lm5j91U4eMzhrh45nWthVYGRXd15QxHj5Zgh eP9JBv+57+jzNfvpgb/5iJ7jBGoHz0SjEdvKi/bfdOwYNbKVSypi727s0PjSTUrPhfY89EbMR9SMR 2fP6cKfcJEmkVOTrQG70ykVh0H1XvPTvs+HUdfeGN83aHsJxvsQJCkTNlEkOWAn/f0EZ90Xyqp2R/ YfbdaV/igm4vSQ==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:64068 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nRKIe-0000FV-KE; Mon, 07 Mar 2022 15:49:48 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Pierre-Henry =?utf-8?Q?Fr=C3=B6hring?= Subject: Re: bug#53508: [PATCH] [PATCH] Add the package: python-multipart References: <20220124173433.293164-1-contact@phfrohring.com> Date: Mon, 07 Mar 2022 21:49:47 +0100 In-Reply-To: <20220124173433.293164-1-contact@phfrohring.com> ("Pierre-Henry =?utf-8?Q?Fr=C3=B6hring=22's?= message of "Mon, 24 Jan 2022 18:34:33 +0100") Message-ID: <874k49bi8k.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-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 53508-done Cc: Pierre-Henry =?utf-8?Q?Fr=C3=B6hring?= , 53508-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: -3.3 (---) Hi, Pierre-Henry Fr=C3=B6hring skribis: > From: Pierre-Henry Fr=C3=B6hring > > --- > gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) I tweaked the commit log as per our conventions and applied it. Thanks, Ludo=E2=80=99. From unknown Sat Aug 09 13:00:31 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 05 Apr 2022 11:24:04 +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