2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-26 17:08:21 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchurl
|
|
|
|
, isPy3k
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "qpid-python";
|
|
|
|
version = "0.32";
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.us.apache.org/dist/qpid/${version}/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "09hdfjgk8z4s3dr8ym2r6xn97j1f9mkb2743pr6zd0bnj01vhsv4";
|
|
|
|
};
|
|
|
|
|
|
|
|
# needs a broker running and then ./qpid-python-test
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://qpid.apache.org/";
|
2018-10-26 17:08:21 +00:00
|
|
|
description = "Python client implementation and AMQP conformance tests for Apache Qpid";
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|