summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-27 11:06:55 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-01-01 23:02:59 +0000
commit8e5ef1883d76e39c430f51bb437ac3cb930a9450 (patch)
tree5a301b6418ceac7ba8935a6cd7aba97c7cb25279 /gnu
parent2be837138f743b8d52ba434ac4a09e7ccd92eb02 (diff)
gnu: morss: Switch to pyproject.
* gnu/packages/syndication.scm (morss): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I6f5cc25325e88cfaf567bbe40629d7ccfe4ac613 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/syndication.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index c85e322cf28..a9a3d3ab6dc 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -433,7 +433,7 @@ a simple interface that makes it easy to organize and browse feeds.")
(sha256
(base32
"1mvxxhzmraxjnw0vz60zkl4d8xp7lw0fs0z537zfhmj1lj9ap4cp"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
;; Tests are not available in the PyPI release and the Git release
;; is lagging behind. Additionally, tests use the network.
@@ -442,6 +442,7 @@ a simple interface that makes it easy to organize and browse feeds.")
;; in the python-beautifulsoup4 dependency.
#:phases #~(modify-phases %standard-phases
(delete 'sanity-check))))
+ (native-inputs (list python-setuptools))
(propagated-inputs (list python-beautifulsoup4 python-chardet
python-dateutil python-lxml))
(home-page "https://morss.it/")