summary refs log tree commit diff
path: root/pkgs/development/python-modules/txamqp/default.nix
blob: db973dbffbed8e68c32be5db1a6b5c98da91fe41 (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
, twisted
}:

buildPythonPackage rec {
  pname = "txAMQP";
  version = "0.8.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0jd9864k3csc06kipiwzjlk9mq4054s8kzk5q1cfnxj8572s4iv4";
  };

  propagatedBuildInputs = [ twisted ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/txamqp/txamqp";
    description = "Library for communicating with AMQP peers and brokers using Twisted";
    license = licenses.asl20;
    maintainers = [];
  };

}