blob: cc66e041ae38a057841a7286fd0fe41e0df58d1b (
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
|
{ lib
, buildPythonPackage
, fetchPypi
, twisted
}:
buildPythonPackage rec {
pname = "txAMQP";
version = "0.8.2";
src = fetchPypi {
inherit pname 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 = [];
};
}
|