summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-06 14:36:59 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-06 17:56:58 +0100
commit3225dafe103c775ab662bd80736644664d12f791 (patch)
tree8f3539c3fea5235cce335cb3de01749270bbfbb4 /gnu/packages/python-web.scm
parentdf4580275652b7cc791be4ca6dc4c44988ff930d (diff)
gnu: python-beren: Switch to pyproject.
* gnu/packages/python-web.scm (python-beren): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools-next. Change-Id: I4ce0ddcd53c95c7fd04af51a297ba1924384b142 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index e6d884b75fc..a29fb9c1b90 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5175,16 +5175,19 @@ APIs.")
(version "0.7.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "beren" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/teffalump/beren")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1v3mdwfqsyza892zvs124ym9w1bkng1j56b7l4dwfjir3723xcgf"))))
- (build-system python-build-system)
+ (base32 "19nnvbjx2wypslqklqi0j9fiwypk1a5qwfw1jcabjw03awm1yyrx"))))
+ (build-system pyproject-build-system)
(arguments
;; The test tries to open a connection to a remote server.
`(#:tests? #f))
- (propagated-inputs
- (list python-apiron))
+ (native-inputs (list python-setuptools-next))
+ (propagated-inputs (list python-apiron))
(home-page "https://github.com/teffalump/beren")
(synopsis "REST client for Orthanc DICOM servers")
(description