sharlatan pushed a commit to branch python-team
in repository guix.

commit fefd6837bb7e3bb7b74e37d3ff818e3489522e92
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Nov 28 19:50:05 2024 +0000

    gnu: python-mock: Enable tests.
    
    * gnu/packages/check.scm (python-mock): Enable tests.
    [native-inputs]: Add python-pytest, python-setuptools, and python-wheel.
    
    Change-Id: I51db06c53d1baa578da421a30049d440134127d7
---
 gnu/packages/check.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index bb0560dc1b..ae259385be 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1435,14 +1435,14 @@ doctest.")
        (method url-fetch)
        (uri (pypi-uri "mock" version))
        (sha256
-        (base32
-         "0zbnp1kmf7ykc9bvlxamsp15rxsd0ar99v99lbh1hiysrkasm5jy"))))
+        (base32 "0zbnp1kmf7ykc9bvlxamsp15rxsd0ar99v99lbh1hiysrkasm5jy"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-pytest
+           python-setuptools
+           python-wheel))
     (propagated-inputs
      (list python-six))
-    (build-system python-build-system)
-    (arguments
-     ;; FIXME: Tests require "pytest", which depends on this package.
-     '(#:tests? #f))
     (home-page "https://github.com/testing-cabal/mock";)
     (synopsis "Python mocking and patching library for testing")
     (description

Reply via email to