python3Packages.locust-cloud: init at 1.26.3

Homepage: https://www.locust.cloud/
Upstream: https://github.com/locustio/locust
This commit is contained in:
magicquark
2025-09-09 05:06:24 +01:00
parent b20ad6893d
commit 0d54c60268
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
buildPythonPackage,
configargparse,
fetchFromGitHub,
gevent,
hatch-vcs,
hatchling,
lib,
platformdirs,
python-engineio,
python-socketio,
requests,
tomli,
}:
buildPythonPackage rec {
pname = "locust-cloud";
version = "1.26.3";
pyproject = true;
src = fetchFromGitHub {
owner = "locustcloud";
repo = "locust-cloud";
tag = version;
hash = "sha256-gOlCxu6f3+T3tmAIolze7K/+aViqO8DjuooXqEELUvs=";
};
build-system = [
hatchling
hatch-vcs
];
dependencies = [
configargparse
gevent
platformdirs
python-engineio
python-socketio
requests
tomli
];
meta = {
description = "Hosted version of Locust to run distributed load tests";
homepage = "https://www.locust.cloud/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ magicquark ];
};
}
+2
View File
@@ -8728,6 +8728,8 @@ self: super: with self; {
locust = callPackage ../development/python-modules/locust { };
locust-cloud = callPackage ../development/python-modules/locust-cloud { };
log-symbols = callPackage ../development/python-modules/log-symbols { };
logassert = callPackage ../development/python-modules/logassert { };