From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 15 17:46:17 2024 Received: (at submit) by debbugs.gnu.org; 15 Jan 2024 22:46:17 +0000 Received: from localhost ([127.0.0.1]:47199 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rPVii-0006iX-I0 for submit@debbugs.gnu.org; Mon, 15 Jan 2024 17:46:17 -0500 Received: from lists.gnu.org ([2001:470:142::17]:51694) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rPVig-0006Yj-U6 for submit@debbugs.gnu.org; Mon, 15 Jan 2024 17:46:15 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rPViY-0007Xa-5X for guix-patches@gnu.org; Mon, 15 Jan 2024 17:46:06 -0500 Received: from confino.investici.org ([93.190.126.19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rPViU-0001ta-PH for guix-patches@gnu.org; Mon, 15 Jan 2024 17:46:05 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1705358753; bh=fOoJSRRVh6ZrAr7GputDd8uSY2i4yr/RtaXQ4FZYLVU=; h=From:To:Cc:Subject:Date:From; b=GAKV8DV3EBblOWN+M6i8VxGtW/6JLr2Xoiq7rpXvuQkAbk95EJREdYniXGtDEz+fq d/24BerLglO3GfoSpasc4qzAROlRZ5GEb9LQESuMREJcI2TAV3WUSmJHsUywYH6niu O83JHr6NPYjRJZV9xlCIGJhh9IDrzCEcydpIaIFI= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4TDS0d0NcVz1144; Mon, 15 Jan 2024 22:45:53 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4TDS0c6fptz1142; Mon, 15 Jan 2024 22:45:52 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH 1/2] gnu: Add python-pytest-tornado5. Date: Mon, 15 Jan 2024 23:44:46 +0100 Message-ID: <20240115224454.28915-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=93.190.126.19; envelope-from=goodoldpaul@autistici.org; helo=confino.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) 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: -0.1 (/) * gnu/packages/check.scm (python-pytest-tornado5): New variable. Change-Id: I9843e91d750bf17128eb6f566b8dbb5cbc0d8278 --- gnu/packages/check.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index b475aea8ae..49a5f42ca8 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -48,6 +48,7 @@ ;;; Copyright © 2023 Reza Housseini ;;; Copyright © 2023 Hilton Chain ;;; Copyright © 2023 Troy Figiel +;;; Copyright © 2024 Giacomo Leidi ;;; ;;; This file is part of GNU Guix. ;;; @@ -3573,6 +3574,29 @@ (define-public python-pytest-regressions that can be used to verify that future runs produce the same data.") (license license:expat))) +(define-public python-pytest-tornado5 + (package + (name "python-pytest-tornado5") + (version "2.0.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "pytest-tornado5" version)) + (sha256 + (base32 + "0qb62jw2w0xr6y942yp0qxiy755bismjfpnxaxjjm05gy2pymr8d")))) + (build-system pyproject-build-system) + (arguments + ;; Tests require pytest < 6 + (list #:tests? #f)) + (propagated-inputs (list python-pytest python-tornado)) + (home-page "https://github.com/vidartf/pytest-tornado") + (synopsis + "Fixtures and markers to simplify testing of Tornado applications") + (description + "This package provides a @code{py.test} plugin providing fixtures and markers to +simplify testing of asynchronous tornado applications.") + (license license:asl2.0))) + (define-public guile-proba (package (name "guile-proba") base-commit: 19db1551dc6f6180d2cda9084c2dec37bf4923c9 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 15 17:47:41 2024 Received: (at 68489-done) by debbugs.gnu.org; 15 Jan 2024 22:47:41 +0000 Received: from localhost ([127.0.0.1]:47209 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rPVk5-0007L9-0A for submit@debbugs.gnu.org; Mon, 15 Jan 2024 17:47:41 -0500 Received: from confino.investici.org ([2a11:7980:1::2:0]:35087) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rPVk3-0007Ke-0Y for 68489-done@debbugs.gnu.org; Mon, 15 Jan 2024 17:47:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1705358856; bh=yW/NzIwyYuB6FkWw4UFiK1wM57Ley6lOga/oJvsgm3g=; h=Date:To:From:Subject:From; b=WJxRMNiX36hQ5d3PIRFELk//IxGRPA17hC/0Qta9q9WlsZSTr1yt7SkwsT+2Vjk2Q 6E6I1fl1Vxy1mHdNBZiHMG7yrzXUmUNVhEoiO5zy6Z7WbXMXkT3+CHY1Um2ktqJ9S2 KIA2kwn/L++MDtoS3uDdu4Eg/Awir/3RU1ptn82U= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4TDS2c1fwrz110g for <68489-done@debbugs.gnu.org>; Mon, 15 Jan 2024 22:47:36 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4TDS2c1HtVz10v2 for <68489-done@debbugs.gnu.org>; Mon, 15 Jan 2024 22:47:36 +0000 (UTC) Message-ID: Date: Mon, 15 Jan 2024 23:47:35 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.0 To: 68489-done@debbugs.gnu.org Content-Language: en-US From: paul Subject: Close issue Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 68489-done 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: -1.0 (-) This issue was opened by mistake, apologies for the noise From unknown Sat Jun 21 03:18:05 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, 13 Feb 2024 12:24:05 +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