[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: Add python-vcversioner.
From: |
David Thompson |
Subject: |
02/08: gnu: Add python-vcversioner. |
Date: |
Thu, 14 Jan 2016 14:19:43 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit ea521b42c219d3dc08bef98cba498e988e76a620
Author: David Thompson <address@hidden>
Date: Mon Jan 11 13:26:07 2016 -0500
gnu: Add python-vcversioner.
* gnu/packages/python.scm (python-vcversioner, python2-vcversioner): New
variables.
---
gnu/packages/python.scm | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 5f6ac79..91629e8 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2197,6 +2197,30 @@ than Python’s urllib2 library.")
(define-public python2-requests
(package-with-python2 python-requests))
+(define-public python-vcversioner
+ (package
+ (name "python-vcversioner")
+ (version "2.14.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "vcversioner" version))
+ (sha256
+ (base32
+ "11ivq1bm7v0yb4nsfbv9m7g7lyjn112gbvpjnjz8nv1fx633dm5c"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (synopsis "Python library for version number discovery")
+ (description "Vcversioner is a Python library that inspects tagging
+information in a variety of version control systems in order to discover
+version numbers.")
+ (home-page "https://github.com/habnabit/vcversioner")
+ (license isc)))
+
+(define-public python2-vcversioner
+ (package-with-python2 python-vcversioner))
+
(define-public python-jsonschema
(package
(name "python-jsonschema")
- branch master updated (3141b83 -> df1f1d6), David Thompson, 2016/01/14
- 01/08: gnu: Add version 2.7 variant of python-requests., David Thompson, 2016/01/14
- 03/08: gnu: Update python-jsonschema to 2.5.1., David Thompson, 2016/01/14
- 07/08: gnu: Add python-dockerpty., David Thompson, 2016/01/14
- 08/08: gnu: Add docker-compose., David Thompson, 2016/01/14
- 05/08: gnu: Add python-websocket-client., David Thompson, 2016/01/14
- 04/08: gnu: Add python-texttable., David Thompson, 2016/01/14
- 06/08: gnu: Add python-docker-py., David Thompson, 2016/01/14
- 02/08: gnu: Add python-vcversioner.,
David Thompson <=