1{ lib
2, buildPythonPackage
3, fetchurl
4, isPy3k
5}:
6
7buildPythonPackage rec {
8 pname = "qpid-python";
9 version = "0.32";
10 disabled = isPy3k;
11
12 src = fetchurl {
13 url = "http://www.us.apache.org/dist/qpid/${version}/${pname}-${version}.tar.gz";
14 sha256 = "09hdfjgk8z4s3dr8ym2r6xn97j1f9mkb2743pr6zd0bnj01vhsv4";
15 };
16
17 # needs a broker running and then ./qpid-python-test
18 doCheck = false;
19
20 meta = with lib; {
21 homepage = "http://qpid.apache.org/";
22 description = "Python client implementation and AMQP conformance tests for Apache Qpid";
23 license = licenses.asl20;
24 };
25
26}