[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/5] gnu: Add python2-tracing.
From: |
Arun Isaac |
Subject: |
[PATCH 3/5] gnu: Add python2-tracing. |
Date: |
Wed, 8 Mar 2017 23:28:33 +0530 |
* gnu/packages/python.scm (python2-tracing): New variable.
---
gnu/packages/python.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 443958548..70833773f 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13489,3 +13489,29 @@ command line programs. Output is automatically
adapted to the width
of the terminal: truncated if it does not fit, and resized if the
terminal size changes.")
(license license:gpl3+)))
+
+(define-public python2-tracing
+ (package
+ (name "python2-tracing")
+ (version "0.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"http://git.liw.fi/cgi-bin/cgit/cgit.cgi/python-tracing/snapshot/tracing-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "06cw4zg42fsvqy372vi2whj26w56vzg5axhzwdjc2bgwf03garbw"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:python ,python-2))
+ (home-page "https://liw.fi/tracing/")
+ (synopsis "Python debug logging helper")
+ (description "@code{python2-tracing} is a python library for
+logging debug messages. It provides a way to turn debugging messages
+on and off, based on the filename they occur in. It is much faster
+than using `logging.Filter` to accomplish the same thing, which
+matters when code is run in production mode. The actual logging still
+happens using the `logging` library.")
+ (license license:gpl3+)))
--
2.11.0
- [PATCH 1/5] gnu: Add python2-cliapp., Arun Isaac, 2017/03/08
- [PATCH 4/5] gnu: Add python2-larch., Arun Isaac, 2017/03/08
- [PATCH 5/5] gnu: Add obnam., Arun Isaac, 2017/03/08
- [PATCH 3/5] gnu: Add python2-tracing., Arun Isaac, 2017/03/08
- [PATCH 2/5] gnu: Add python2-ttystatus., Arun Isaac, 2017/03/08
- Re: [PATCH 1/5] gnu: Add python2-cliapp., Danny Milosavljevic, 2017/03/08