gnu: Add python-session-info2.

* gnu/packages/python-xyz.scm (python-session-info2): New variable.

Change-Id: I8773329702f7ef7c6c9a929317cc3d5295b8b507
This commit is contained in:
Sharlatan Hellseher 2025-08-07 14:55:00 +01:00
parent c1aa803542
commit c22b6731d4
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1010,6 +1010,36 @@ new type and helper functions to integrate it nicely with the Python
stdlib.")
(license license:expat)))
(define-public python-session-info2
(package
(name "python-session-info2")
(version "0.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "session_info2" version))
(sha256
(base32 "0xs1mcdz0hf626m3421ryv4f7b5rixz2hm8x88czx2i9196x69g9"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
#~(list "--deselect=tests/test_synthetic.py::test_gpu"
;; Tests require Jupyter Client.
"--ignore=tests/test_subprocess.py")))
(native-inputs
(list python-hatch-docstring-description
python-hatch-vcs
python-hatchling
python-pytest
python-pytest-asyncio))
(home-page "https://session-info2.readthedocs.io/")
(synopsis "Print versions of imported packages")
(description
"This package implements a functionality to print versions of imported
Python packages.")
(license license:mpl2.0)))
(define-public python-shxparser
(package
(name "python-shxparser")