From 5994ce30c27b2c2e5d643cf63aa6c91c649edf31 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 7 Dec 2015 16:20:07 -0500 Subject: [PATCH 3/8] gnu: Add python-pluggy. * gnu/packages/python.scm (python-pluggy): New variable. --- gnu/packages/python.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6bdca89..2175b79 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7305,3 +7305,25 @@ 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 (string-append + "https://pypi.python.org/packages/source/p/pluggy/pluggy-" + version ".tar.gz")) + (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))) -- 2.6.3