mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 03:20:43 +02:00
gnu: Add python-pluginbase.
* gnu/packages/python-xyz.scm (python-pluginbase): New variable.
This commit is contained in:
parent
d08f90be6f
commit
8d8e65998b
1 changed files with 25 additions and 0 deletions
|
@ -5650,6 +5650,31 @@ includes the following improvements compared to @code{pdb}:
|
|||
(description "Pdftotext is a Python library of PDF text extraction.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pluginbase
|
||||
(package
|
||||
(name "python-pluginbase")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pluginbase" version))
|
||||
(sha256
|
||||
(base32
|
||||
"11z2vvbp13828y0x3w39f29p9r9xcix7h7c4fff2w8yfiylk6v7z"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "make" "test")))))))
|
||||
(native-inputs `(("python-pytest" ,python-pytest)))
|
||||
(home-page "https://github.com/mitsuhiko/pluginbase")
|
||||
(synopsis "Simple but flexible plugin system for Python")
|
||||
(description "PluginBase is a library useful in the development of
|
||||
flexible plugin systems in Python.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-pyparsing
|
||||
(package
|
||||
(name "python-pyparsing")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue