Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 31 lines 559 B view raw
1{ buildPythonPackage 2, fetchFromGitHub 3, mock 4, unittest2 5, msgpack 6, requests 7, flask 8, gevent 9, pyzmq 10}: 11 12buildPythonPackage rec { 13 pname = "locustio"; 14 version = "0.9.0"; 15 16 src = fetchFromGitHub { 17 owner = "locustio"; 18 repo = "locust"; 19 rev = version; 20 sha256 = "1645d63ig4ymw716b6h53bhmjqqc13p9r95k1xfx66ck6vdqnisd"; 21 }; 22 23 propagatedBuildInputs = [ msgpack requests flask gevent pyzmq ]; 24 buildInputs = [ mock unittest2 ]; 25 26 meta = { 27 homepage = https://locust.io/; 28 description = "A load testing tool"; 29 broken = true; 30 }; 31}