summary refs log tree commit diff
path: root/pkgs/development/python2-modules/qpid-python/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python2-modules/qpid-python/default.nix')
-rw-r--r--pkgs/development/python2-modules/qpid-python/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python2-modules/qpid-python/default.nix b/pkgs/development/python2-modules/qpid-python/default.nix
new file mode 100644
index 00000000000..e22b3215e81
--- /dev/null
+++ b/pkgs/development/python2-modules/qpid-python/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, 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 = "https://qpid.apache.org/";
+    description = "Python client implementation and AMQP conformance tests for Apache Qpid";
+    license = licenses.asl20;
+  };
+
+}