mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -05:00
gnu: Add python-semver.
* gnu/packages/python.scm (python-semver, python2-semver): New variables.
This commit is contained in:
parent
ac97dce1d2
commit
467cfaa3fc
1 changed files with 33 additions and 0 deletions
|
@ -12144,3 +12144,36 @@ (define-public python2-activepapers
|
||||||
'("lib/activepapers/builtins3.py"
|
'("lib/activepapers/builtins3.py"
|
||||||
"lib/activepapers/standardlib3.py"
|
"lib/activepapers/standardlib3.py"
|
||||||
"lib/activepapers/utility3.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
|
||||||
|
@url{Semantic Versioning, http://semver.org/}.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python2-semver
|
||||||
|
(package-with-python2 python-semver))
|
||||||
|
|
Loading…
Reference in a new issue