1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 twisted, 6}: 7 8buildPythonPackage rec { 9 pname = "txamqp"; 10 version = "0.8.2"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 pname = "txAMQP"; 15 inherit version; 16 sha256 = "0jd9864k3csc06kipiwzjlk9mq4054s8kzk5q1cfnxj8572s4iv4"; 17 }; 18 19 propagatedBuildInputs = [ twisted ]; 20 21 meta = with lib; { 22 homepage = "https://github.com/txamqp/txamqp"; 23 description = "Library for communicating with AMQP peers and brokers using Twisted"; 24 license = licenses.asl20; 25 maintainers = [ ]; 26 }; 27}