From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34168) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jTWFQ-0006HI-Tn for guix-patches@gnu.org; Tue, 28 Apr 2020 15:50:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jTWB8-00021V-4d for guix-patches@gnu.org; Tue, 28 Apr 2020 15:50:28 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58257) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jTWB7-00021H-Ky for guix-patches@gnu.org; Tue, 28 Apr 2020 15:46:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jTWB7-0002DK-JA for guix-patches@gnu.org; Tue, 28 Apr 2020 15:46:01 -0400 Subject: [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes. Resent-Message-ID: References: <87d08h51lw.fsf@dustycloud.org> From: Christopher Lemmer Webber In-reply-to: <87d08h51lw.fsf@dustycloud.org> Date: Tue, 28 Apr 2020 15:45:42 -0400 Message-ID: <87d07rtmvt.fsf@dustycloud.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 40511@debbugs.gnu.org --=-=-= Content-Type: text/plain Ok, new patch series! Broke up all the dependencies! This might need a little work still but it's closer... --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-python-jarco-classes.patch >From 2891b384b0c18764d8f36b81c542ce45c4adb919 Mon Sep 17 00:00:00 2001 From: Christopher Lemmer Webber Date: Tue, 28 Apr 2020 15:18:20 -0400 Subject: [PATCH 01/10] gnu: Add python-jarco-classes. * gnu/packages/python-xyz.scm (python-jarco-classes): New variable. --- gnu/packages/python-xyz.scm | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 31cafd47d1..5f333af9e3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19588,3 +19588,41 @@ workspace...") dependencies. It implements the @uref{http://opensoundcontrol.org/spec-1_0, Open Sound Control 1.0} specification.") (license license:unlicense))) + +(define-public python-jaraco-classes + (package + (name "python-jaraco.classes") + (version "3.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jaraco.classes" version)) + (sha256 + (base32 + "1avsxzm5mwylmy2zbxq3xvn48z5djb0qy3hwv4ryncprivzri1n3")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; Not importing the googleapis package for now + (add-after 'unpack 'ignore-googleapis + (lambda _ + (substitute* "setup.py" + (("'pytest-black-multipy',") "")) + #t))))) + (propagated-inputs + `(("python-more-itertools" ,python-more-itertools))) + (native-inputs + `(("python-pytest" ,python-pytest) + ("python-pytest-checkdocs" ,python-pytest-checkdocs) + ("python-pytest-cov" ,python-pytest-cov) + ("python-pytest-flake8" ,python-pytest-flake8) + ("python-setuptools-scm" ,python-setuptools-scm))) + (home-page + "https://github.com/jaraco/jaraco.classes") + (synopsis + "Utility functions for Python class constructs") + (description + "This package provides utility functions for Python class constructs.") + (license #f))) + -- 2.26.0 --=-=-=--