1{ lib, buildPythonPackage, fetchPypi 2, stompclient, python-daemon, redis, pid, pytest, six, click, coverage 3, sqlalchemy }: 4 5buildPythonPackage rec { 6 pname = "CoilMQ"; 7 version = "1.0.1"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "4cbfeb5ed2459df14902c1380157be6267702b1271682924cd316ccad8a29d1d"; 12 }; 13 14 propagatedBuildInputs = [ stompclient python-daemon redis pid ]; 15 buildInputs = [ pytest six click coverage sqlalchemy ]; 16 17 # The teste data is not included in the distribution 18 doCheck = false; 19 20 meta = with lib; { 21 description = "Simple, lightweight, and easily extensible STOMP message broker"; 22 homepage = "https://github.com/hozn/coilmq/"; 23 license = licenses.asl20; 24 }; 25}