summary refs log tree commit diff
path: root/pkgs/development/python-modules/stompclient/default.nix
blob: 1efcd6a65005baadcc311ad86d74993cfe0acbf6 (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
26
27
28
29
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, mock
, nose
}:

buildPythonPackage rec {
  pname = "stompclient";
  version = "0.3.2";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "95a4e98dd0bba348714439ea11a25ee8a74acb8953f95a683924b5bf2a527e4e";
  };

  buildInputs = [ mock nose ];

  # XXX: Ran 0 tests in 0.217s

  meta = with stdenv.lib; {
    description = "Lightweight and extensible STOMP messaging client";
    homepage = https://bitbucket.org/hozn/stompclient;
    license = licenses.asl20;
  };

}