guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 8f720da76bc0ca90cb0184a7f6e2971da4a79029
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 18:46:29 2026 +0100
gnu: python-flexcache: Build from git.
* gnu/packages/python-xyz.scm (python-flexcache):
[source]: Switch to git-fetch.
[native-inputs]: Remove python-pytest-mpl, python-pytest-subtests, and
python-wheel.
Change-Id: Id94029e0e56e0c48928c6f61e8882efac5e4ae36
---
gnu/packages/python-xyz.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b649329276..2ec43781b7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1599,18 +1599,18 @@ system.")
(version "0.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "flexcache" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hgrecco/flexcache")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0mh6c3s0ykmnnhzys72xq5ls4myzpz1y86fmz0ngw6v2l3aknx0q"))))
+ (base32 "08b1i79q6gxcn6c5gkgscwjnzwlwaaz9vmlgrr7z9kbindxx61ih"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
- python-pytest-mpl
- python-pytest-subtests
python-setuptools
- python-setuptools-scm
- python-wheel))
+ python-setuptools-scm))
(propagated-inputs
(list python-typing-extensions))
(home-page "https://github.com/hgrecco/flexcache")