[bug#65037,1/7] gnu: python-daemon: Use the git repo as source instead of pypi.
Commit Message
---
gnu/packages/python-xyz.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
base-commit: c7e45139faa27b60f2c7d0a4bc140f9793d97d47
Comments
Am Donnerstag, dem 03.08.2023 um 15:11 +0200 schrieb Attila Lendvai:
> ---
The ChangeLog is missing.
Perhaps write
"gnu: python-daemon: Build from git sources.
* gnu/packages/python-xyz.scm (python-daemon)[source]: Use git-fetch.
[uri, sha256]: Adjust accordingly."
Cheers
@@ -5548,11 +5548,13 @@ (define-public python-daemon
(version "2.3.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "python-daemon" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://pagure.io/python-daemon.git")
+ (commit (string-append "release/" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "1bxfn2bq56sd4w0nm9mqy8y0905m7fc8vmhnjxlrf49vcbqr7adx"))))
+ (base32 "1ysynb1m9vsww2nmhcypkk08xwifc3gw5yq10h1a1i11yn27w4y6"))))
(build-system python-build-system)
(arguments
`(#:phases