Files
nixpkgs/pkgs/development/python-modules/locust/default.nix
T
Martin Weinelt 6c59101d8a python3Packages.locust: 2.42.2 -> 2.43.1
https://github.com/locustio/locust/blob/2.43.1/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:28 +01:00

110 lines
2.1 KiB
Nix

{
lib,
buildPythonPackage,
python,
callPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
pytestCheckHook,
configargparse,
cryptography,
flask,
flask-cors,
flask-login,
gevent,
geventhttpclient,
msgpack,
locust-cloud,
psutil,
pyquery,
pytest,
pyzmq,
requests,
retry,
tomli,
werkzeug,
}:
buildPythonPackage rec {
pname = "locust";
version = "2.43.1";
pyproject = true;
src = fetchFromGitHub {
owner = "locustio";
repo = "locust";
tag = version;
hash = "sha256-+0B4S524UjvaYl7VTZ1IY7UuBuDjUBqOvjHu0UVOi6A=";
};
postPatch = ''
substituteInPlace locust/test/test_main.py \
--replace-fail '"locust"' '"${placeholder "out"}/bin/locust"'
substituteInPlace locust/test/test_log.py \
--replace-fail '"locust"' '"${placeholder "out"}/bin/locust"'
'';
webui = callPackage ./webui.nix {
inherit version;
src = "${src}/locust/webui";
};
preBuild = ''
mkdir -p $out/${python.sitePackages}/locust/webui/dist
ln -sf ${webui}/dist/* $out/${python.sitePackages}/locust/webui/dist
'';
build-system = [
hatchling
hatch-vcs
];
pythonRelaxDeps = [
# version 0.7.0.dev0 is not considered to be >= 0.6.3
"flask-login"
# version 6.0.1 is listed as 0.0.1 in the dependency check and 0.0.1 is not >= 3.0.10
"flask-cors"
"requests"
];
dependencies = [
configargparse
flask
flask-cors
flask-login
gevent
geventhttpclient
msgpack
locust-cloud
psutil
pyzmq
requests
tomli
werkzeug
pytest
];
pythonImportsCheck = [ "locust" ];
nativeCheckInputs = [
cryptography
pyquery
pytestCheckHook
retry
];
# locust's test suite is very flaky, due to heavy reliance on timing-based tests and access to the
# network.
doCheck = false;
meta = {
description = "Developer-friendly load testing framework";
homepage = "https://docs.locust.io/";
changelog = "https://github.com/locustio/locust/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jokatzke ];
};
}