unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#48918] [PATCH 1/2] gnu: python-pyzmq: Enable tests.
@ 2021-06-08 13:20 Vinicius Monego
  2021-06-08 13:21 ` [bug#48918] [PATCH 2/2] gnu: python-pyzmq: Update to 22.1.0 Vinicius Monego
  2021-06-08 17:46 ` bug#48918: [PATCH 1/2] gnu: python-pyzmq: Enable tests Leo Famulari
  0 siblings, 2 replies; 3+ messages in thread
From: Vinicius Monego @ 2021-06-08 13:20 UTC (permalink / raw)
  To: 48918; +Cc: Vinicius Monego

* gnu/packages/python-xyz.scm (python-pyzmq)[arguments]: Remove #:tests?. Add
phase to build Cython extensions before tests.
[native-inputs]: Remove python-nose. Add python-cython, python-pytest.
---
 gnu/packages/python-xyz.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9f961756b1..367c75f0f7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9162,14 +9162,18 @@ applications.")
     (arguments
      `(#:configure-flags
        (list (string-append "--zmq=" (assoc-ref %build-inputs "zeromq")))
-       ;; FIXME: You must build pyzmq with 'python setup.py build_ext
-       ;; --inplace' for 'python setup.py test' to work.
-       #:tests? #f))
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'build-ext
+           (lambda _
+             ;; Cython extensions have to be built before running the tests.
+             (invoke "python" "setup.py" "build_ext" "--inplace"))))))
     (inputs
      `(("zeromq" ,zeromq)))
     (native-inputs
      `(("pkg-config" ,pkg-config)
-       ("python-nose" ,python-nose)))
+       ("python-cython" ,python-cython)
+       ("python-pytest" ,python-pytest)))
     (home-page "https://github.com/zeromq/pyzmq")
     (synopsis "Python bindings for 0MQ")
     (description
-- 
2.31.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-08 17:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-08 13:20 [bug#48918] [PATCH 1/2] gnu: python-pyzmq: Enable tests Vinicius Monego
2021-06-08 13:21 ` [bug#48918] [PATCH 2/2] gnu: python-pyzmq: Update to 22.1.0 Vinicius Monego
2021-06-08 17:46 ` bug#48918: [PATCH 1/2] gnu: python-pyzmq: Enable tests Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).