mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
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
1 changed files with 21 additions and 0 deletions
|
@ -14228,6 +14228,27 @@ Python. It is based on Parsing Expression Grammars, PEG. With pyPEG you can
|
|||
parse many formal languages.")
|
||||
(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
|
||||
(package
|
||||
(name "python-automat")
|
||||
|
|
Loading…
Reference in a new issue