python2Packages.locustio: remove, unmaintained

This commit is contained in:
Jonathan Ringer 2020-11-19 20:17:54 -08:00 committed by Jonathan Ringer
parent bc49e5f6ef
commit a20cf479b3
2 changed files with 0 additions and 37 deletions

View file

@ -1,35 +0,0 @@
{ buildPythonPackage, fetchFromGitHub, isPy38
, flask
, gevent
, mock
, msgpack
, pyzmq
, requests
, unittest2
}:
buildPythonPackage rec {
pname = "locustio";
version = "0.14.4";
# tests hang on python38
disabled = isPy38;
src = fetchFromGitHub {
owner = "locustio";
repo = "locust";
rev = version;
sha256 = "1645d63ig4ymw716b6h53bhmjqqc13p9r95k1xfx66ck6vdqnisd";
};
propagatedBuildInputs = [ msgpack requests flask gevent pyzmq ];
checkInputs = [ mock unittest2 ];
# remove file which attempts to do GET request
preCheck = ''
rm locust/test/test_stats.py
'';
meta = {
homepage = "https://locust.io/";
description = "A load testing tool";
};
}

View file

@ -3547,8 +3547,6 @@ in {
lockfile = callPackage ../development/python-modules/lockfile { };
locustio = callPackage ../development/python-modules/locustio { };
Logbook = callPackage ../development/python-modules/Logbook { };
logfury = callPackage ../development/python-modules/logfury { };