From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48943) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fAO2b-0006q6-Hp for guix-patches@gnu.org; Sun, 22 Apr 2018 19:05:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fAO2Y-0006Vb-C6 for guix-patches@gnu.org; Sun, 22 Apr 2018 19:05:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56587) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fAO2Y-0006VP-8L for guix-patches@gnu.org; Sun, 22 Apr 2018 19:05:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fAO2X-00021L-Tt for guix-patches@gnu.org; Sun, 22 Apr 2018 19:05:01 -0400 Subject: [bug#31241] [PATCH 01/13] gnu: python-attrs: Update to 17.4.0. References: <20180422230125.30668-1-mail@nicolasgoaziou.fr> In-Reply-To: <20180422230125.30668-1-mail@nicolasgoaziou.fr> Resent-Message-ID: From: Nicolas Goaziou Date: Mon, 23 Apr 2018 01:04:08 +0200 Message-Id: <20180422230420.30818-1-mail@nicolasgoaziou.fr> 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: 31241@debbugs.gnu.org * gnu/packages/python.scm (python-attrs)[version]: Update to 17.4.0. [native-inputs]: Add python-sphinx and python-coverage. Reorder inputs. --- gnu/packages/python.scm | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index f36e4c770..e437ea77d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -10686,19 +10686,22 @@ and bit flag values.") (define-public python-attrs (package (name "python-attrs") - (version "17.2.0") - (source (origin - (method url-fetch) - (uri (pypi-uri "attrs" version)) - (sha256 - (base32 - "04gx08ikpk26wnq22f7l42gapcvk8iz1512r927k6sadz6cinkax")))) + (version "17.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "attrs" version)) + (sha256 + (base32 + "1jafnn1kzd6qhxgprhx6y6ik1r5m2rilx25syzcmq03azp660y8w")))) (build-system python-build-system) (native-inputs - `(("python-pytest" ,python-pytest) + `(("python-coverage" ,python-coverage) ("python-hypothesis" ,python-hypothesis) - ("python-zope-interface" ,python-zope-interface) - ("python-six" ,python-six))) + ("python-pytest" ,python-pytest) + ("python-six" ,python-six) + ("python-sphinx" ,python-sphinx) + ("python-zope-interface" ,python-zope-interface))) (home-page "https://github.com/python-attrs/attrs/") (synopsis "Attributes without boilerplate") (description "@code{attrs} is a Python package with class decorators that -- 2.17.0