1{ stdenv
2, buildPythonPackage
3, fetchurl
4, twisted
5}:
6
7buildPythonPackage rec {
8 pname = "txamqp";
9 version = "0.3";
10
11 src = fetchurl {
12 url = "https://launchpad.net/txamqp/trunk/${version}/+download/python-txamqp_${version}.orig.tar.gz";
13 sha256 = "1r2ha0r7g14i4b5figv2spizjrmgfpspdbl1m031lw9px2hhm463";
14 };
15
16 buildInputs = [ twisted ];
17
18 meta = with stdenv.lib; {
19 homepage = https://launchpad.net/txamqp;
20 description = "Library for communicating with AMQP peers and brokers using Twisted";
21 license = licenses.asl20;
22 maintainers = with maintainers; [ rickynils ];
23 };
24
25}