guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 35a92f0b7e4748139acf6c2cd230fc77914d41d2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 21 08:41:47 2025 +0100
gnu: python-langdetect: Adjust ipusts, fix build.
* gnu/packages/python-xyz.scm (python-langdetect)[propagated-inputs]:
Add python-six.
[native-inputs]: Remove python-wheel.
Change-Id: I97205c863ab57092fe7e6d9959c05a55ad77def9
---
gnu/packages/python-xyz.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 59169f5db6..148d584c01 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18418,7 +18418,11 @@ primary use case is APIs defined before keyword-only
parameters existed.")
(sha256
(base32 "1805svvb7xjm4sf1j7b6nc3409x37pd1xmabfwwjf1ldkzwgxhfb"))))
(build-system pyproject-build-system)
- (native-inputs (list python-pytest python-setuptools python-wheel))
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
+ (propagated-inputs
+ (list python-six))
(home-page "https://github.com/Mimino666/langdetect")
(synopsis "Language detection library")
(description