This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 9da5b5196a gnu: python-pulp: Fix build.
9da5b5196a is described below
commit 9da5b5196adc9e6280426f4eb72a023524a263dc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Dec 18 00:06:42 2025 +0000
gnu: python-pulp: Fix build.
* gnu/packages/python-xyz.scm (python-pulp):
[build-system]: Switch to pyproejct-build-system.
[arguments] <tests?>: Disable for now.
[native-inputs]: Add python-setuptools.
Change-Id: I4488a3a7d7199f722df5ba8b319dfbd19612972c
---
gnu/packages/python-xyz.scm | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6d317d7033..3737f71bc6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15389,6 +15389,8 @@ structures.")
(license license:epl1.0)))
(define-public python-pulp
+ ;; When updating, check snakemake@N builds still fine, see:
+ ;; <https://codeberg.org/guix/guix/issues/4782>.
(package
(name "python-pulp")
(version "2.4")
@@ -15399,7 +15401,13 @@ structures.")
(sha256
(base32
"1dammrg0f1v0r028i3rpxbf2bsyxmjq0q6ihb4x2wsdki44z3bxj"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments
+ ;; TODO: They need a special setup, see:
+ ;; <https://codeberg.org/guix/guix/pulls/4908>.
+ (list #:tests? #f))
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
(list python-amply))
(home-page "https://github.com/coin-or/pulp")