about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/qpid-python/default.nix
blob: ef540538792d691bcbc71f87f136d95b293cde19 (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
26
{ lib, stdenv
, 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;

  meta = with lib; {
    homepage = "http://qpid.apache.org/";
    description = "Python client implementation and AMQP conformance tests for Apache Qpid";
    license = licenses.asl20;
  };

}