diff options
author | BonfaceKilz | 2022-03-03 14:35:36 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-03-03 14:35:36 +0300 |
commit | a088d3ed076a1f5b9be664f929c44646c8b59dc7 (patch) | |
tree | b63df6a7e5658c22e8960be0cdb436a5c10b40c1 | |
parent | 702a0e7341c5d312f1d8ceb638c39f146486a7d9 (diff) | |
download | guix-bioinformatics-a088d3ed076a1f5b9be664f929c44646c8b59dc7.tar.gz |
gn: Add pytest-pudb
* gn/packages/python.scm: New package.
-rw-r--r-- | gn/packages/python.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index fe188ae..2be3739 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1819,3 +1819,21 @@ useful information for debugging.") The goal of the project is to parse everything in the Pip requirement file format spec.") (license license:bsd-3))) + +(define-public python-pytest-pudb + (package + (name "python-pytest-pudb") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-pudb" version)) + (sha256 + (base32 "0qrc8gzfxmcz7jjn0kj87y6kn5law1la2a0c6hyid0lwscb77a0f")))) + (build-system python-build-system) + (propagated-inputs (list pudb python-pytest)) + (native-inputs (list python-flake8 python-pexpect python-tox)) + (home-page "https://github.com/wronglink/pytest-pudb") + (synopsis "Pytest PuDB debugger integration") + (description "Pytest PuDB debugger integration") + (license license:expat))) |