~ruther/guix-local

1e98883e8e5961eedcf0e8a886757781a71ac47a — Nicolas Graves 4 months ago 5edc770
gnu: Add python-pynose.

* gnu/packages/python-check.scm (python-pynose): New variable.

Change-Id: Ie9ce596d19d5a4dd936a5a95228c91b78e0e1705
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 18 insertions(+), 0 deletions(-)

M gnu/packages/python-check.scm
M gnu/packages/python-check.scm => gnu/packages/python-check.scm +18 -0
@@ 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")