[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#65037] [PATCH 1/7] gnu: python-daemon: Use the git repo as source i
From: |
Attila Lendvai |
Subject: |
[bug#65037] [PATCH 1/7] gnu: python-daemon: Use the git repo as source instead of pypi. |
Date: |
Thu, 3 Aug 2023 15:11:29 +0200 |
---
gnu/packages/python-xyz.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index db3e69fb45..0296b55a8b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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
base-commit: c7e45139faa27b60f2c7d0a4bc140f9793d97d47
--
2.40.1
- [bug#65037] Fix python-daemon, Trezor support, Attila Lendvai, 2023/08/03
- [bug#65037] [PATCH 1/7] gnu: python-daemon: Use the git repo as source instead of pypi.,
Attila Lendvai <=
- [bug#65037] [PATCH 5/7] gnu: python-trezor-agent: Update to 0.14.7., Attila Lendvai, 2023/08/03
- [bug#65037] [PATCH 4/7] gnu: python-trezor: Update to 0.13.7., Attila Lendvai, 2023/08/03
- [bug#65037] [PATCH 7/7] gnu: trezord: Update to 2.0.33., Attila Lendvai, 2023/08/03
- [bug#65037] [PATCH 3/7] gnu: Add python-construct-classes., Attila Lendvai, 2023/08/03
- [bug#65037] [PATCH 6/7] gnu: trezor-agent: Fix build, update versioning, and the git tag., Attila Lendvai, 2023/08/03
- [bug#65037] [PATCH 2/7] gnu: python-daemon: Update to 3.0.1., Attila Lendvai, 2023/08/03