GNU bug report logs - #77400
[PATCH python-team 00/26] Some further updates

Previous Next

Package: guix-patches;

Reported by: Nicolas Graves <ngraves <at> ngraves.fr>

Date: Mon, 31 Mar 2025 06:17:01 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


Message #26 received at 77400 <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Graves <ngraves <at> ngraves.fr>
To: 77400 <at> debbugs.gnu.org
Cc: Nicolas Graves <ngraves <at> ngraves.fr>
Subject: [PATCH 09/26] gnu: python-locust: Update to 2.33.2.
Date: Mon, 31 Mar 2025 08:18:37 +0200
* gnu/packages/benchmark.scm (python-locust): Update to 2.33.2.
[arguments]{test-flags}: Add additional missing test.
{phases}: Add phase 'pretend-version. Adapt phase fix-version.
[native-inputs]: Remove python-poetry-core,
python-poetry-dynamic-versioning. Add python-hatchling,
python-hatch-vcs.
---
 gnu/packages/benchmark.scm | 33 +++++++++++++++++++++++++--------
 1 file changed, 25 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm
index 8743dc66aa..bc630bf723 100644
--- a/gnu/packages/benchmark.scm
+++ b/gnu/packages/benchmark.scm
@@ -402,7 +402,7 @@ (define (mark-as-non-free directory)
 (define-public python-locust
   (package
     (name "python-locust")
-    (version "2.32.5")
+    (version "2.33.2")
     ;; The archive on Pypi has no tests.
     (source (origin
               (method git-fetch)
@@ -412,7 +412,7 @@ (define-public python-locust
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0nmhk2k0mbza9slqgms42s6hsfwwmyr275l90an02qaypx066l1n"))))
+                "055is6plxjajzp7v5q108n90j5mvdaylpna98kw9zsqn7mvfq7ms"))))
     (build-system pyproject-build-system)
     (arguments
      (list
@@ -484,10 +484,21 @@ (define-public python-locust
                      "not test_ramp_up_from_0_to_100_000_users_with_50_user_classes_and_1000_workers_and_5000_spawn_rate"
                      ;; This test fails with "AssertionError:
                      ;; 'stopped' != 'stopping'".
-                     "not test_distributed_shape") " and "))
+                     "not test_distributed_shape"
+                     ;; This test fails with AssertionError:
+                     ;; "locust [...] != .locust-real"
+                     "not test_invalid_stop_timeout_string"
+                     ) " and "))
       #:phases
       #~(modify-phases %standard-phases
           ;; The build system attempts to detect the version by spawning git.
+          (add-after 'unpack 'pretend-version
+            (lambda _
+              (substitute* "pyproject.toml"
+                (("^dynamic = \\[\"version\"\\].*$")
+                 (format #f "version = ~s~%" #$version))
+                (("^source = \"vcs\".*$")
+                 "source = \"static\"\n"))))
           (add-after 'unpack 'fix-version
             (lambda _
               (let ((tuple (list
@@ -518,9 +529,15 @@ (define-public python-locust
 
 ")))))
               (substitute* "pyproject.toml"
-                (("setuptools = \">=70.0.0\"") "setuptools = \">=67.0.0\"")
-                (("^version =.*") (string-append "version = \"" #$version "\"\n"))
-                (("enable = true") "enable = false"))))
+                (("\"setuptools>=.*\",")
+                 (string-append "\"setuptools>="
+                                #$(package-version
+                                   (this-package-input "python-setuptools"))
+                                "\","))
+                (("^version =.*")
+                 (string-append "version = \"" #$version "\"\n"))
+                (("enable = true")
+                 "enable = false"))))
           (add-before 'check 'increase-resource-limits
             (lambda _
               ;; XXX: Copied from ungoogled-chromium.
@@ -552,8 +569,8 @@ (define-public python-locust
            python-werkzeug))
     (native-inputs
      (list nss-certs-for-test
-           python-poetry-core
-           python-poetry-dynamic-versioning
+           python-hatchling
+           python-hatch-vcs
            python-pyquery
            python-pytest
            python-retry))
-- 
2.49.0





This bug report was last modified 52 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.