gnu: python-funcparserlib: Update to 1.0.0a0.
* gnu/packages/python-xyz.scm (python-funcparserlib): Update to 1.0.0a0. [source]: Make some cosmetic changes. [native-inputs]: Remove python-tox. [arguments]: Add #:tests?. <#:phases>: Don't override the 'check phase. [home-page]: Don't break line. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
7022eb6ea0
commit
06e39eafd7
1 changed files with 5 additions and 13 deletions
|
@ -24005,25 +24005,17 @@ scripts to load entry points more quickly.")
|
||||||
(define-public python-funcparserlib
|
(define-public python-funcparserlib
|
||||||
(package
|
(package
|
||||||
(name "python-funcparserlib")
|
(name "python-funcparserlib")
|
||||||
(version "0.3.6")
|
(version "1.0.0a0") ; last stable release was in 2013
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "funcparserlib" version))
|
(uri (pypi-uri "funcparserlib" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0ama5w5lswxlp3l4qfqq3zlg7i6qkw45jfl1f7p8w1vnj8m47yz6"))))
|
||||||
"07f9cgjr3h4j2m67fhwapn8fja87vazl58zsj4yppf9y3an2x6dp"))))
|
|
||||||
(native-inputs
|
|
||||||
(list python-tox))
|
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda _
|
|
||||||
(invoke "tox"))))))
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(home-page
|
(arguments
|
||||||
"https://github.com/vlasovskikh/funcparserlib")
|
`(#:tests? #f)) ; no tests in PyPI and no setup.py in GitHub
|
||||||
|
(home-page "https://github.com/vlasovskikh/funcparserlib")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Recursive descent parsing library based on functional combinators")
|
"Recursive descent parsing library based on functional combinators")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue