mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add python-objgraph.
* gnu/packages/python.scm (python-objgraph): New variable.
This commit is contained in:
parent
93d229cb86
commit
72ffb51231
1 changed files with 24 additions and 0 deletions
|
@ -9081,6 +9081,30 @@ (define-public python-greenlet
|
|||
(define-public python2-greenlet
|
||||
(package-with-python2 python-greenlet))
|
||||
|
||||
(define-public python-objgraph
|
||||
(package
|
||||
(name "python-objgraph")
|
||||
(version "3.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "objgraph" version))
|
||||
(sha256
|
||||
(base32
|
||||
"184m09am5gpbqfaiy7l0hwh476mczbrly1dffs0rw2p1d1i2q32a"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-graphviz" ,python-graphviz)))
|
||||
(native-inputs
|
||||
`(("python-mock" ,python-mock)
|
||||
("graphviz" ,graphviz)))
|
||||
(home-page "https://mg.pov.lt/objgraph/")
|
||||
(synopsis "Draw Python object reference graphs with graphviz")
|
||||
(description
|
||||
"This package provides tools to draw Python object reference graphs with
|
||||
graphviz.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-gevent
|
||||
(package
|
||||
(name "python-gevent")
|
||||
|
|
Loading…
Reference in a new issue