[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: Add python-semver.
From: |
Danny Milosavljevic |
Subject: |
01/03: gnu: Add python-semver. |
Date: |
Mon, 25 Dec 2017 18:01:43 -0500 (EST) |
dannym pushed a commit to branch master
in repository guix.
commit 467cfaa3fcf4f1d45c07ed0f3ba5d85a079f0fd3
Author: Danny Milosavljevic <address@hidden>
Date: Sun Dec 24 01:50:38 2017 +0100
gnu: Add python-semver.
* gnu/packages/python.scm (python-semver, python2-semver): New variables.
---
gnu/packages/python.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 101967a..7ff1e78 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -12144,3 +12144,36 @@ such as figshare or Zenodo.")
'("lib/activepapers/builtins3.py"
"lib/activepapers/standardlib3.py"
"lib/activepapers/utility3.py")))))))))))
+
+(define-public python-semver
+ (package
+ (name "python-semver")
+ (version "2.7.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "semver" version))
+ (sha256
+ (base32
+ "0hhgqppchv59rqj0yzi1prdg2nfsywqmjsqy2rycyxm0hvxmbyqz"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-test-requirements
+ (lambda _
+ (substitute* "setup.py"
+ ;; Our Python is new enough.
+ (("'virtualenv<14\\.0\\.0'") "'virtualenv'"))
+ #t)))))
+ (native-inputs
+ `(("python-tox" ,python-tox)
+ ("python-virtualenv" ,python-virtualenv)))
+ (home-page "https://github.com/k-bx/python-semver")
+ (synopsis "Python helper for Semantic Versioning")
+ (description "This package provides a Python library for
address@hidden Versioning, http://semver.org/}.")
+ (license license:bsd-3)))
+
+(define-public python2-semver
+ (package-with-python2 python-semver))