summary refs log tree commit diff
path: root/pkgs/development/python-modules/coilmq/default.nix
blob: 90eb1edc2cda95daadd531df02eed4d835665ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildPythonPackage, fetchPypi
, stompclient, python-daemon, redis, pid, pytest, six, click, coverage
, sqlalchemy }:

buildPythonPackage rec {
  pname = "CoilMQ";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4cbfeb5ed2459df14902c1380157be6267702b1271682924cd316ccad8a29d1d";
  };

  propagatedBuildInputs = [ stompclient python-daemon redis pid ];
  buildInputs = [ pytest six click coverage sqlalchemy ];

  # The teste data is not included in the distribution
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Simple, lightweight, and easily extensible STOMP message broker";
    homepage = http://code.google.com/p/coilmq/;
    license = licenses.asl20;
  };
}