diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-25 00:09:00 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:13 +0100 |
commit | eefaf173d6d2b6fb8c6e0efe0bd64f8799de8fba (patch) | |
tree | d97e9f03822b47a167cc2cb4c371c2f8476caa8d /gnu/packages/python-xyz.scm | |
parent | f304ba6c69a190b0a99f994d82e3ddf71af8db04 (diff) |
gnu: python-logical-unification: Fetch source from git.
* gnu/packages/python-xyz.scm (python-logical-unification):
[source]: Switch to git-fetch.
Change-Id: I2f14aa301679efd7a3ad6509e7b7d9ff82016508
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 97a455d6ee..0546e2653a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -36478,11 +36478,13 @@ needed and registers the function with its annotations.") (version "0.4.3") (source (origin - (method url-fetch) - (uri (pypi-uri "logical-unification" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/pythological/unification") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0j57953hi7kg2rl0163vzjzsvzdyjimnklhx6idf5vaqqf1d3p1j")))) + (base32 "1kvhvf1p9a5733pqb15k4fhwrfnj5ijsv6yn92mxzaa0zh89z7g3")))) (build-system pyproject-build-system) (native-inputs (list python-setuptools python-wheel)) (propagated-inputs |