gnu: Add python-incremental.
* gnu/packages/python.scm (python-incremental, python2-incremental): New variables. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
96cb5ca1f2
commit
0cd83b4e00
|
@ -14228,6 +14228,27 @@ Python. It is based on Parsing Expression Grammars, PEG. With pyPEG you can
|
||||||
parse many formal languages.")
|
parse many formal languages.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public python-incremental
|
||||||
|
(package
|
||||||
|
(name "python-incremental")
|
||||||
|
(version "17.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "incremental" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1cylxdz1cnkm5g3pklna3h2n0i0rks95ir1pnpxfnvpkmab1cxbv"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page "https://github.com/hawkowl/incremental")
|
||||||
|
(synopsis "Library for versioning Python projects")
|
||||||
|
(description "Incremental is a small library that versions your Python
|
||||||
|
projects.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python2-incremental
|
||||||
|
(package-with-python2 python-incremental))
|
||||||
|
|
||||||
(define-public python-automat
|
(define-public python-automat
|
||||||
(package
|
(package
|
||||||
(name "python-automat")
|
(name "python-automat")
|
||||||
|
|
Loading…
Reference in New Issue