gnu: python-objgraph: Update to 3.6.2.

* gnu/packages/python-xyz.scm (python-objgraph): Update to 3.6.2.
[build-system]: Swap to pyproject-build-system.
[arguments] <test-flags>: Skip one test.
[native-inputs]: Remove python-mock; add python-pytest,
python-setuptools, and python-wheel.

Change-Id: I4d6fa195f528809a948ea1f8d076603f4e9d0118
This commit is contained in:
Sharlatan Hellseher 2025-01-25 14:56:49 +00:00 committed by Andreas Enge
parent 98d32f6dfa
commit 3eca105304
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -22637,19 +22637,27 @@ are synchronized with data exchanges on \"channels\".")
(define-public python-objgraph (define-public python-objgraph
(package (package
(name "python-objgraph") (name "python-objgraph")
(version "3.4.1") (version "3.6.2")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "objgraph" version)) (uri (pypi-uri "objgraph" version))
(sha256 (sha256
(base32 (base32 "1n0swlq11w36r2p6x7b4y0zz10dgzpdc8qasyk3y68kl1zsg5f80"))))
"19qmqsh984zq1rzzjy4vqnmviaqnymcyl8h7z99pnicbgwnm2adz")))) (build-system pyproject-build-system)
(build-system python-build-system) (arguments
(propagated-inputs (list
(list python-graphviz)) #:test-flags
#~(list "tests.py"
;; AssertionError: [0, 1, 2] not found in [[], [], [], [], [],
;; [], [], [], [], [], [], [], ...
"-k" "not test_at_addrs")))
(native-inputs (native-inputs
(list python-mock graphviz)) (list python-pytest
python-setuptools
python-wheel))
(propagated-inputs
(list graphviz))
(home-page "https://mg.pov.lt/objgraph/") (home-page "https://mg.pov.lt/objgraph/")
(synopsis "Draw Python object reference graphs with graphviz") (synopsis "Draw Python object reference graphs with graphviz")
(description (description