diff options
| author | Chris Ostrouchov <chris.ostrouchov@gmail.com> | 2018-10-26 13:08:21 -0400 |
|---|---|---|
| committer | Frederik Rietdijk <fridh@fridh.nl> | 2018-10-27 09:07:24 +0200 |
| commit | 7316e8470d91a902841ad514fe286abcc4cd7147 (patch) | |
| tree | 1d18ba22535cfe6e7af98a43e8c5f825c40200d4 /pkgs/development/python-modules/qpid-python | |
| parent | 846c0d99bed28e299b17db4732be4b91b3ce8f2b (diff) | |
pythonPackages.qpid-python: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/qpid-python')
| -rw-r--r-- | pkgs/development/python-modules/qpid-python/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/qpid-python/default.nix b/pkgs/development/python-modules/qpid-python/default.nix new file mode 100644 index 000000000000..713e9db566e4 --- /dev/null +++ b/pkgs/development/python-modules/qpid-python/default.nix @@ -0,0 +1,26 @@ +{ 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 stdenv.lib; { + homepage = http://qpid.apache.org/; + description = "Python client implementation and AMQP conformance tests for Apache Qpid"; + license = licenses.asl20; + }; + +} |
