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