linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / coilmq / default.nix
blobb21ea193cbfa0a1f833170e9d49e52436106acca
1 { lib, buildPythonPackage, fetchPypi
2 , stompclient, python-daemon, redis, pid, pytest, six, click, coverage
3 , sqlalchemy }:
5 buildPythonPackage rec {
6   pname = "CoilMQ";
7   version = "1.0.1";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "4cbfeb5ed2459df14902c1380157be6267702b1271682924cd316ccad8a29d1d";
12   };
14   propagatedBuildInputs = [ stompclient python-daemon redis pid ];
15   buildInputs = [ pytest six click coverage sqlalchemy ];
17   # The teste data is not included in the distribution
18   doCheck = false;
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   };