mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
69b393ace5
These URLs are reported as problematic by Repology. It could be a permanent redirection or the page does not exist anymore
26 lines
730 B
Nix
26 lines
730 B
Nix
{ 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 = "https://github.com/hozn/coilmq/";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|