From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 07 09:24:52 2020 Received: (at submit) by debbugs.gnu.org; 7 Aug 2020 13:24:52 +0000 Received: from localhost ([127.0.0.1]:56189 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k42Md-00047C-NB for submit@debbugs.gnu.org; Fri, 07 Aug 2020 09:24:51 -0400 Received: from lists.gnu.org ([209.51.188.17]:57680) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k42Mb-000474-TJ for submit@debbugs.gnu.org; Fri, 07 Aug 2020 09:24:50 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52006) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k42Mb-0000fP-Mr for guix-patches@gnu.org; Fri, 07 Aug 2020 09:24:49 -0400 Received: from mout01.posteo.de ([185.67.36.65]:37861) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k42MZ-0005jf-Cm for guix-patches@gnu.org; Fri, 07 Aug 2020 09:24:49 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 8C46216005F for ; Fri, 7 Aug 2020 15:24:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1596806685; bh=vfNuFjHDN6aWfwCxUDonge8o4nl7RHywisVyqHWCvUQ=; h=From:To:Cc:Subject:Date:From; b=VMhC0m4kbCyKLCA9qMyF1I9eh/mdOpxphljs/bV5ezdvCYGXdVPlcP60/LB0TjO6G t1TuSHK3QD0Obmebp3TamsBQoaShvdRYqVMGAAeXSEUd3dkgoMeu2FZcdfGRxUE9BV f0bIJpYLLrdghmWhphZ9IfFwrf3xhYHn6vakT/1Oi1yVwmJVYiwJcRqtm0YkTZsMol 5BSZAY48twBYr/bhpsUOh50bbmB8FEx8e4sUBd5YRda8DNddR1zFp1qGBpYwzWAV/r terGQTJtIE6xKPtYZcBTxpqFEVtGPdttGt5JOjRPQAUrYdl2wRwnsskrTEO38WgRk0 iAmd8q0gS/rxQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4BNR0r1CZfz6tmN; Fri, 7 Aug 2020 15:24:43 +0200 (CEST) From: Vinicius Monego To: guix-patches@gnu.org Subject: [PATCH 3/4] gnu: Add python-trio. Date: Fri, 7 Aug 2020 10:24:15 -0300 Message-Id: <20200807132416.49309-3-monego@posteo.net> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200807132416.49309-1-monego@posteo.net> References: <20200807132416.49309-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=monego@posteo.net; helo=mout01.posteo.de X-detected-operating-system: by eggs.gnu.org: First seen = 2020/08/07 09:24:45 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 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_MED=-2.3, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Vinicius Monego 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.3 (--) * gnu/packages/python-xyz.scm (python-trio): New variable. --- gnu/packages/python-xyz.scm | 63 +++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e15f1a495e..302366411a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18962,7 +18962,68 @@ project.") ;; Either license applies. (license (list license:expat license:asl2.0)))) +(define-public python-trio + (package + (name "python-trio") + (version "0.16.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trio" version)) + (sha256 + (base32 "0g6gkwz6i05rm9ym4l4imxakzld7qcgxhb21kprilchcav87s1nz")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'check 'change-home + (lambda _ + ;; Tests require a writable home. + (setenv "HOME" "/tmp") + #t)) + (replace 'check + (lambda _ + (invoke "pytest" "-vv" "-k" + (string-append + ;; This test times out. + "not test_ki_protection_works" + ;; Assertion errors. + " and not test_guest_mode_ki" + " and not test_run_in_trio_thread_ki" + ;; These try to raise KeyboardInterrupt which does not work + ;; in the build environment. + " and not test_ki_self" + " and not test_ki_wakes_us_up" + ;; Failure in name resolution. + " and not test_getnameinfo" + " and not test_SocketType_resolve" + ;; OSError: protocol not found. + " and not test_getprotobyname"))))))) + (native-inputs + `(("python-astor" ,python-astor) + ("python-ipython" ,python-ipython) + ("python-jedi" ,python-jedi) + ("python-pylint" ,python-pylint) + ("python-pyopenssl" ,python-pyopenssl) + ("python-pytest" ,python-pytest) + ("python-pytest-cov" ,python-pytest-cov) + ("python-trustme" ,python-trustme))) + (propagated-inputs + `(("python-attrs" ,python-attrs) + ("python-idna" ,python-idna) + ("python-outcome" ,python-outcome) + ("python-sniffio" ,python-sniffio) + ("python-sortedcontainers" + ,python-sortedcontainers))) + (home-page "https://github.com/python-trio/trio") + (synopsis "Friendly Python library for async concurrency and I/O") + (description + "Trio strives to be a production-quality, async/await-native I/O library +for Python. Like all async libraries, its main purpose is to help you write +programs that do multiple things at the same time with parallelized I/O.") + ;; Either license applies. + (license (list license:expat license:asl2.0)))) + (define-public python-humanize (package (name "python-humanize") -- 2.20.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Aug 09 07:57:05 2020 Received: (at 42743-done) by debbugs.gnu.org; 9 Aug 2020 11:57:05 +0000 Received: from localhost ([127.0.0.1]:60181 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k4jwn-00064l-47 for submit@debbugs.gnu.org; Sun, 09 Aug 2020 07:57:05 -0400 Received: from flashner.co.il ([178.62.234.194]:46462) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k4jwk-00063p-Op for 42743-done@debbugs.gnu.org; Sun, 09 Aug 2020 07:57:03 -0400 Received: from localhost (unknown [31.210.177.29]) by flashner.co.il (Postfix) with ESMTPSA id C4B004015E; Sun, 9 Aug 2020 11:56:56 +0000 (UTC) Date: Sun, 9 Aug 2020 14:56:03 +0300 From: Efraim Flashner To: Vinicius Monego Subject: Re: [bug#42743] [PATCH 3/4] gnu: Add python-trio. Message-ID: <20200809115603.GE840@E5400> References: <20200807132416.49309-1-monego@posteo.net> <20200807132416.49309-3-monego@posteo.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="qOrJKOH36bD5yhNe" Content-Disposition: inline In-Reply-To: <20200807132416.49309-3-monego@posteo.net> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 42743-done Cc: 42743-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: -1.0 (-) --qOrJKOH36bD5yhNe Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks! Pushed as deca924aa5dafc84a5da1693a0bf494bdbae44c7 --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --qOrJKOH36bD5yhNe Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl8v5FMACgkQQarn3Mo9 g1HQwRAAtJgmD1sksqJ8zu6L/TR8Mnj8QNyUDMfuv66U2ecD5ah1X75Ph1WfCYaS NFLF1W+fDmm729BByIDtz+9TaHpkqhmunz75A4lnUyd9je25bdwCYMVmYRRbKQtO xYh40oXl5U4FI6aglHSamocdxOqoL+WonzcH66VnOU1mOrLsFyFp8zXDY9cyZ558 HnRJbOBJAV8lXGKHPkMOih9SOV63eXrX4LzWjjrNpAMVojOZnFyFI96Rq+1tyNGr 2E4iaOMaqQnWHII1cTgs2NpSxyQ/DYe8CFNK/wyhG2LN7XKFkvFriuGBWjBX4cuW yQzSn/d3J4M08ApUNebJj6BRCVXkQde651wIJlvET0EYqd38YjdzNGXYhIAh2/96 Ra/1PfnspeMvpu9pOuuvnPNLsRex1GyhSdv+cdVnDwNUBMyOarnjh6nebpmm2vRk JJpwjSRo+/aLRGnoCEuOVuStdBAhsgUjmtDpKjALS7vmxbQosp6xPlpwvTm8OKXj 0JYaYlQkOoS+wQRty8uvtnzf7SIc5p5AQsVNJNTXGVRTBeCZRE1Ayf2YPwQKmzNh 2xKygK+4QXaUkBpL0AG9U75Ni/mGfrMXAlrFcTeZZI9qVklw1/RKqxGPxcNL5pEO qhPtGhJeFkhLuXb30JSyX1t2tRbIfKdce4Y+FrQ9byEvAz8bMbY= =1cXv -----END PGP SIGNATURE----- --qOrJKOH36bD5yhNe-- From unknown Sat Sep 06 05:03:32 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 07 Sep 2020 11:24:06 +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