mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 12:17:10 -05:00
gnu: python-pyclipper: Enable tests.
* gnu/packages/python.scm (python-pyclipper)[arguments]: Enable tests. [native-inputs]: Add python-pytest, python-pytest-runner, python-unittest2.
This commit is contained in:
parent
8189ce6f05
commit
261e421459
1 changed files with 4 additions and 2 deletions
|
@ -12911,8 +12911,7 @@ (define-public python-pyclipper
|
|||
(delete-file "pyclipper/pyclipper.cpp") #t))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; 8 Tests fail, 37 succeed
|
||||
#:phases
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'build 'cythonize-sources
|
||||
(lambda _
|
||||
|
@ -12922,6 +12921,9 @@ (define-public python-pyclipper
|
|||
`(("python-setuptools-scm-git-archive" ,python-setuptools-scm-git-archive)))
|
||||
(native-inputs
|
||||
`(("python-cython" ,python-cython)
|
||||
("python-pytest" ,python-pytest)
|
||||
("python-pytest-runner" ,python-pytest-runner)
|
||||
("python-unittest2" ,python-unittest2)
|
||||
("unzip" ,unzip)))
|
||||
(home-page "https://github.com/greginvm/pyclipper")
|
||||
(synopsis "Wrapper for Angus Johnson's Clipper library")
|
||||
|
|
Loading…
Reference in a new issue