nixpkgs/pkgs/development/python-modules/locustio/default.nix

36 lines
702 B
Nix
Raw Normal View History

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