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