all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Efraim Flashner <efraim@flashner.co.il>
To: guix-devel@gnu.org
Subject: [PATCH 1/2] gnu: Add python-backports-abc.
Date: Fri, 26 Feb 2016 11:11:22 +0200	[thread overview]
Message-ID: <1456477883-21423-2-git-send-email-efraim@flashner.co.il> (raw)
In-Reply-To: <1456477883-21423-1-git-send-email-efraim@flashner.co.il>

* gnu/packages/python.scm (python-backports-abc): New variable.
---
 gnu/packages/python.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b67aed0..6d1a73b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4990,6 +4990,30 @@ connection to each user.")
           ,python2-backport-ssl-match-hostname)
          ,@(package-inputs tornado))))))
 
+;; the python- version can be removed with python-3.5
+(define-public python-backports-abc
+  (package
+    (name "python-backports-abc")
+      (version "0.4")
+        (source
+          (origin
+            (method url-fetch)
+            (uri (pypi-uri "backports_abc" version))
+            (sha256
+             (base32
+              "19fh75lni9pb673n2fn505m1rckm0af0szcv5xx1qm1xpa940glb"))))
+    (build-system python-build-system)
+    (inputs
+     `(("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/cython/backports_abc")
+    (synopsis "Backport of additions to the 'collections.abc' module.")
+    (description
+     "A backport of recent additions to the 'collections.abc' module.")
+    (license psfl)))
+
+(define-public python2-backports-abc
+  (package-with-python2 python-backports-abc))
+
 (define-public python-waf
   (package
     (name "python-waf")
-- 
2.7.0

  reply	other threads:[~2016-02-26  9:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-26  9:11 [PATCH 0/2] python-tornado-4.3 Efraim Flashner
2016-02-26  9:11 ` Efraim Flashner [this message]
2016-02-28  8:37   ` [PATCH 1/2] gnu: Add python-backports-abc Andreas Enge
2016-02-28  9:06     ` Efraim Flashner
2016-02-26  9:11 ` [PATCH 2/2] gnu: python-tornado: Update to 4.3 Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1456477883-21423-2-git-send-email-efraim@flashner.co.il \
    --to=efraim@flashner.co.il \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.