diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-21 20:50:49 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-21 20:50:59 +0100 |
commit | 64eede9ae95d9261ea8a6a065509f1ae6f078b1e (patch) | |
tree | 34268eecc1ecbe8028d3253cec44ed2730b51c23 | |
parent | 46a6cc0af588504272a32b6dfaae1dd2c0d8aa0b (diff) |
gnu: python-vdf: Fix tests.
* gnu/packages/python-xyz.scm (python-vdf)[source]: Switch to git-fetch
providing tests.
[native-inputs]: Remove python-wheel; add python-pytest.
Change-Id: Ic02581bb528315c03d6dd6f32d72f78f9a44c401
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ad6a5cf455..94f07094c4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9041,14 +9041,16 @@ with Python.") (version "3.4") (source (origin - (method url-fetch) - (uri (pypi-uri "vdf" version)) + (method git-fetch) ; no tests in PyPI release + (uri (git-reference + (url "https://github.com/ValvePython/vdf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1bz2gn04pl6rj2mawlzlirz1ygg4rdypq0pxbyg018873vs1jm7x")))) + (base32 "1xc0sd21xgf08pf6dwa4l23y9jb6yqaw61rr03ns0d2r6sby137a")))) (build-system pyproject-build-system) (native-inputs - (list python-setuptools python-wheel)) + (list python-pytest python-setuptools)) (home-page "https://github.com/ValvePython/vdf") (synopsis "Work with Valve's VDF text format") (description "This package provides @code{python-vdf}, a library for |