mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add python-gorilla.
* gnu/packages/python-xyz.scm (python-gorilla): New public variable.
This commit is contained in:
parent
abbb15309d
commit
8b20f6c043
1 changed files with 20 additions and 0 deletions
|
@ -8635,6 +8635,26 @@ (define-public python-appdirs
|
|||
(define-public python2-appdirs
|
||||
(package-with-python2 python-appdirs))
|
||||
|
||||
(define-public python-gorilla
|
||||
(package
|
||||
(name "python-gorilla")
|
||||
(version "0.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "gorilla" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0b40blcp6fih4nvqbilra4qw1dfccv1ahjmr41ac4d9rjadqkcpy"))))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://github.com/christophercrouzet/gorilla")
|
||||
(synopsis "Convenient monkey patching with Python")
|
||||
(description
|
||||
"Gorilla is a Python library that provides a convenient approach to
|
||||
monkey patching. Monkey patching is the process of modifying module and
|
||||
class attributes at runtime with the purpose of replacing or extending
|
||||
third-party code.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-llfuse
|
||||
(package
|
||||
(name "python-llfuse")
|
||||
|
|
Loading…
Reference in a new issue