guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 1e98883e8e5961eedcf0e8a886757781a71ac47a
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Oct 12 20:04:40 2025 +0200

    gnu: Add python-pynose.
    
    * gnu/packages/python-check.scm (python-pynose): New variable.
    
    Change-Id: Ie9ce596d19d5a4dd936a5a95228c91b78e0e1705
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-check.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 913e1ab9e3..1071335743 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1858,6 +1858,24 @@ wrapper above tools such as Pyflakes, pydocstyle, 
pycodestyle and McCabe,
 among others.")
     (license license:lgpl3+)))
 
+(define-public python-pynose
+  (package
+    (name "python-pynose")
+    (version "1.5.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pynose" version))
+       (sha256
+        (base32 "0jbzmxnxmgf60158gpvfsp8j2cid6psfwj3j94vxv61z8wk4xnl1"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-setuptools python-wheel))
+    (home-page "https://github.com/mdmintz/pynose";)
+    (synopsis "pynose fixes nose to extend unittest and make testing easier")
+    (description
+     "pynose fixes nose to extend unittest and make testing easier.")
+    (license license:lgpl2.0)))
+
 (define-public python-pytest-aiohttp
   (package
     (name "python-pytest-aiohttp")

Reply via email to