[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/07: gnu: Add python-pluggy.
From: |
David Thompson |
Subject: |
03/07: gnu: Add python-pluggy. |
Date: |
Tue, 02 Feb 2016 14:27:05 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit c0aacfa5b903f1a0b9038aee7fe8f7f120f9d734
Author: David Thompson <address@hidden>
Date: Mon Dec 7 16:20:07 2015 -0500
gnu: Add python-pluggy.
* gnu/packages/python.scm (python-pluggy): New variable.
---
gnu/packages/python.scm | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 3db26ac..5295014 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7299,3 +7299,26 @@ library as well as on the command line.")
(define-public python2-rsa
(package-with-python2 python-rsa))
+
+(define-public python-pluggy
+ (package
+ (name "python-pluggy")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pluggy" version))
+ (sha256
+ (base32
+ "18qfzfm40bgx672lkg8q9x5hdh76n7vax99aank7vh2nw21wg70m"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (synopsis "Plugin and hook calling mechanism for Python")
+ (description "Pluggy is an extraction of the plugin manager as used by
+Pytest but stripped of Pytest specific details.")
+ (home-page "https://pypi.python.org/pypi/pluggy")
+ (license license:expat)))
+
+(define-public python2-pluggy
+ (package-with-python2 python-pluggy))
- branch master updated (ce294c0 -> f861b8b), David Thompson, 2016/02/02
- 02/07: gnu: Add python-rsa., David Thompson, 2016/02/02
- 01/07: gnu: Add python-colorama., David Thompson, 2016/02/02
- 06/07: gnu: Add python-botocore., David Thompson, 2016/02/02
- 05/07: gnu: Add python-jmespath., David Thompson, 2016/02/02
- 04/07: gnu: Add python-tox., David Thompson, 2016/02/02
- 07/07: gnu: Add awscli., David Thompson, 2016/02/02
- 03/07: gnu: Add python-pluggy.,
David Thompson <=