From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50064) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIzXv-0002r2-6x for guix-patches@gnu.org; Mon, 30 Mar 2020 14:54:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIzXu-0001gl-0S for guix-patches@gnu.org; Mon, 30 Mar 2020 14:54:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51756) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIzXt-0001gY-Rc for guix-patches@gnu.org; Mon, 30 Mar 2020 14:54:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jIzXt-0000S2-QS for guix-patches@gnu.org; Mon, 30 Mar 2020 14:54:01 -0400 Subject: bug#40321: [PATCH] Add python-tortoise-orm Resent-To: guix-patches@gnu.org Resent-Message-ID: Date: Mon, 30 Mar 2020 14:52:53 -0400 From: Leo Famulari Message-ID: <20200330185253.GA9276@jasmine.lan> References: <20200330064334.GB3329@zpidnp36> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200330064334.GB3329@zpidnp36> 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: Lars-Dominik Braun Cc: 40321-done@debbugs.gnu.org On Mon, Mar 30, 2020 at 08:43:34AM +0200, Lars-Dominik Braun wrote: > this patchset adds python-tortoise-orm and dependencies. Thanks! Pushed as 1110a421f4c9ede6ee814e678135a1dd2ac05fc9 with some changes... I added copyright lines for you and edited some of the descriptions to fix typos and grammatical mistakes. > +(define-public python-ciso8601 > + (package > + (name "python-ciso8601") > + (version "2.1.3") > + (source > + (origin > + (method git-fetch) > + ;; Pypi package lacks file tests.py > + (uri (git-reference > + (url "https://github.com/closeio/ciso8601.git") > + (commit (string-append "v" version)))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "0g1aiyc1ayh0rnibyy416m5mmck38ksgdm3jsy0z3rxgmgb24951")))) > + (build-system python-build-system) > + (native-inputs > + `(("python-pytz" ,python-pytz))) According to README.rst, this should only be required with Python 2, but the tests fail without it. Can we amend the package to just fetch from PyPi and remove this dependency?