sharlatan pushed a commit to branch master
in repository guix.

commit 5cf0a65c81ec84d05012ca18ffd541a552bffd3d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Apr 23 23:06:19 2025 +0100

    gnu: python-ddt: Move python-check.
    
    * gnu/packages/python-xyz.scm (python-ddt): Move from here ...
    * gnu/packages/python-check.scm: ... to here.
    
    Change-Id: If098b89d4abb795db7dc9756a76060e2e6ae11cc
---
 gnu/packages/python-check.scm | 31 +++++++++++++++++++++++++++++--
 gnu/packages/python-xyz.scm   | 26 --------------------------
 2 files changed, 29 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index b8fd35f26e..19c422baa7 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1,10 +1,11 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2015 Cyril Roelandt <[email protected]>
+;;; Copyright © 2017 Muriithi Frederick Muriuki <[email protected]>
 ;;; Copyright © 2018, 2020, 2022 Marius Bakke <[email protected]>
+;;; Copyright © 2018-2020 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2019, 2021-2025 Ricardo Wurmus <[email protected]>
-;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2019, 2020, 2021 Efraim Flashner <[email protected]>
-;;; Copyright © 2019, 2020, 2021, 2022, 2023, 2024 Maxim Cournoyer 
<[email protected]>
+;;; Copyright © 2019-2024 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2019, 2021 Hartmut Goebel <[email protected]>
 ;;; Copyright © 2020, 2022 Julien Lepiller <[email protected]>
 ;;; Copyright © 2020 Matthew James Kraai <[email protected]>
@@ -539,6 +540,32 @@ counterexamples for you.")
 @command{behave}.")
     (license license:expat)))
 
+(define-public python-ddt
+  (package
+    (name "python-ddt")
+    (version "1.7.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "ddt" version))
+       (sha256
+        (base32 "0jz0lglz5z5clsbralbpmd1hxs4ndb6ls7lvl7216c4nhfqdc5fj"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-aiounittest
+           python-pytest
+           python-setuptools
+           python-wheel))
+    (propagated-inputs
+     (list python-pyyaml))
+    (home-page "https://github.com/datadriventests/ddt";)
+    (synopsis "Data-Driven Tests")
+    (description
+     "Data-Driven Tests (@dfn{DDT}) allow you to multiply one test case by
+running it with different test data, and make it appear as multiple test
+cases.")
+    (license license:expat)))
+
 (define-public python-doc8
   (package
     (name "python-doc8")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0d5535263d..21ced04733 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25976,32 +25976,6 @@ console.")
      can even create animations with the cursor controls.")
     (license license:expat)))
 
-(define-public python-ddt
-  (package
-    (name "python-ddt")
-    (version "1.7.2")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "ddt" version))
-       (sha256
-        (base32 "0jz0lglz5z5clsbralbpmd1hxs4ndb6ls7lvl7216c4nhfqdc5fj"))))
-    (build-system pyproject-build-system)
-    (native-inputs
-     (list python-aiounittest
-           python-pytest
-           python-setuptools
-           python-wheel))
-    (propagated-inputs
-     (list python-pyyaml))
-    (home-page "https://github.com/datadriventests/ddt";)
-    (synopsis "Data-Driven Tests")
-    (description
-     "Data-Driven Tests (@dfn{DDT}) allow you to multiply one test case by
-running it with different test data, and make it appear as multiple test
-cases.")
-    (license license:expat)))
-
 (define-public python-pycountry
   (package
     (name "python-pycountry")

Reply via email to