c5f420381c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pika/versions
36 lines
690 B
Nix
36 lines
690 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, nose
|
|
, mock
|
|
, pyyaml
|
|
, unittest2
|
|
, pyev
|
|
, twisted
|
|
, tornado
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pika";
|
|
version = "0.13.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1104b0jm7qs9b211hw6siddflvf56ag4lfsjy6yfbczds4lxhf2k";
|
|
};
|
|
|
|
# Tests require twisted which is only availalble for python-2.x
|
|
doCheck = !isPy3k;
|
|
|
|
buildInputs = [ nose mock pyyaml unittest2 pyev ]
|
|
++ stdenv.lib.optionals (!isPy3k) [ twisted tornado ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Pure-Python implementation of the AMQP 0-9-1 protocol";
|
|
homepage = https://pika.readthedocs.org;
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|