about summary refs log tree commit diff
path: root/pkgs/development/python-modules/txamqp/default.nix
blob: 2c3ee66663f6473da0de93f2e03963a3bb576f82 (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
{ stdenv
, buildPythonPackage
, fetchurl
, twisted
}:

buildPythonPackage rec {
  pname = "txamqp";
  version = "0.3";

  src = fetchurl {
    url = "https://launchpad.net/txamqp/trunk/${version}/+download/python-txamqp_${version}.orig.tar.gz";
    sha256 = "1r2ha0r7g14i4b5figv2spizjrmgfpspdbl1m031lw9px2hhm463";
  };

  buildInputs = [ twisted ];

  meta = with stdenv.lib; {
    homepage = https://launchpad.net/txamqp;
    description = "Library for communicating with AMQP peers and brokers using Twisted";
    license = licenses.asl20;
    maintainers = with maintainers; [ rickynils ];
  };

}