aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/python.scm
diff options
context:
space:
mode:
authorjgart2021-11-19 00:21:26 -0500
committerjgart2021-11-19 00:32:58 -0500
commit4cfa04f4529a845d82ede8f31c87baef59d1ef8e (patch)
tree003c699a71eeaad43301e46e1f7707874f66ccbd /gn/packages/python.scm
parentad9c793b4876f5f7c04b14a16f15b6ef688db1f1 (diff)
downloadguix-bioinformatics-4cfa04f4529a845d82ede8f31c87baef59d1ef8e.tar.gz
gnu: Add python-requirements-parser.
* gn/packages/python.scm (python-requirements-parser): New variable.
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r--gn/packages/python.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 76b4ec9..bed3fe6 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -1794,3 +1794,29 @@ window to get to RStudio for example.")
"This extension adds a toolbar overlay to Flask applications containing
useful information for debugging.")
(license license:bsd-3)))
+
+(define-public python-requirements-parser
+ (package
+ (name "python-requirements-parser")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "requirements-parser" version))
+ (sha256
+ (base32 "1m2fgnyrh4vb5canm7cp30b04f7vh8869z6kb2gsw19dbj4ywqsr"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f))
+ (native-inputs
+ `(("python-coverage" ,python-coverage)
+ ("python-coveralls" ,python-coveralls)
+ ("python-nose" ,python-nose)))
+ (home-page "https://github.com/davidfischer/requirements-parser")
+ (synopsis "Parses Pip requirement files")
+ (description
+"This is a small Python module for parsing Pip requirement files.
+The goal of the project is to parse everything in the Pip requirement
+file format spec.")
+ (license license:bsd-3)))
+