blob: f9dacc571c58e44c09f258b29c064cfb59f249cb (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
twisted,
}:
buildPythonPackage rec {
pname = "txamqp";
version = "0.8.2";
src = fetchPypi {
pname = "txAMQP";
inherit version;
sha256 = "0jd9864k3csc06kipiwzjlk9mq4054s8kzk5q1cfnxj8572s4iv4";
};
propagatedBuildInputs = [ twisted ];
meta = with lib; {
homepage = "https://github.com/txamqp/txamqp";
description = "Library for communicating with AMQP peers and brokers using Twisted";
license = licenses.asl20;
maintainers = [ ];
};
}
|