diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-12 20:04:40 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-13 12:00:50 +0100 |
| commit | 1e98883e8e5961eedcf0e8a886757781a71ac47a (patch) | |
| tree | 7c3d511fedea04cb1e7b4122f9206cfdc3d21aa9 /gnu/packages/python-check.scm | |
| parent | 5edc770f65754bf98b4d4f00c4461e8f68c45f36 (diff) | |
gnu: Add python-pynose.
* gnu/packages/python-check.scm (python-pynose): New variable.
Change-Id: Ie9ce596d19d5a4dd936a5a95228c91b78e0e1705
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-check.scm')
| -rw-r--r-- | gnu/packages/python-check.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 913e1ab9e3c..1071335743f 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") |
