Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / qpid-python / default.nix
blob24c90d072a2be486655a92359977db62bca9c0ee
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , isPy3k
5 }:
7 buildPythonPackage rec {
8   pname = "qpid-python";
9   version = "0.32";
10   disabled = isPy3k;
12   src = fetchurl {
13     url = "http://www.us.apache.org/dist/qpid/${version}/${pname}-${version}.tar.gz";
14     sha256 = "09hdfjgk8z4s3dr8ym2r6xn97j1f9mkb2743pr6zd0bnj01vhsv4";
15   };
17   # needs a broker running and then ./qpid-python-test
18   doCheck = false;
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   };