mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: python-hy: Update to 0.24.0.
* gnu/packages/python-xyz.scm (python-hy): Update to 0.24.0. [arguments]: Skip more tests and remove old tests in the custom 'check' phase. [native-inputs]: Add python-wheel. Replace python-pytest with python-pytest-7.1. [propagated-inputs]: Remove python-astor, python-rply.
This commit is contained in:
parent
2211f50ec1
commit
a3eebc7731
1 changed files with 8 additions and 7 deletions
|
@ -14658,7 +14658,7 @@ (define-public python-rply
|
||||||
(define-public python-hy
|
(define-public python-hy
|
||||||
(package
|
(package
|
||||||
(name "python-hy")
|
(name "python-hy")
|
||||||
(version "0.20.0")
|
(version "0.24.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch) ; no tests in PyPI release
|
(method git-fetch) ; no tests in PyPI release
|
||||||
|
@ -14667,7 +14667,7 @@ (define-public python-hy
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1g7djra9z7b0wyqyfrk2n4z3zamp2xkahv00jwdv35xmwwn09hq4"))))
|
(base32 "1s458ymd9g3s8k2ccc300jr4w66c7q3vhmhs9z3d3a4qg0xdhs9y"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -14677,13 +14677,14 @@ (define-public python-hy
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "python" "-m" "pytest" "-k"
|
(invoke "python" "-m" "pytest" "-k"
|
||||||
(string-append ; skip some failed tests
|
(string-append ; skip some failed tests
|
||||||
"not test_bin_hy_sys_executable"
|
"not test_sys_executable"
|
||||||
" and not test_bin_hy_circular_macro_require"
|
" and not test_circular_macro_require"
|
||||||
" and not test_macro_from_module"))))))))
|
" and not test_macro_require"
|
||||||
|
" and not test_requires_pollutes_core"))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest))
|
(list python-pytest-7.1 python-wheel))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-astor python-colorama python-funcparserlib python-rply))
|
(list python-colorama python-funcparserlib))
|
||||||
(home-page "https://docs.hylang.org/en/stable/")
|
(home-page "https://docs.hylang.org/en/stable/")
|
||||||
(synopsis "Lisp frontend to Python")
|
(synopsis "Lisp frontend to Python")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue