47 lines
1,003 B
Nix
47 lines
1,003 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
pytestCheckHook,
|
||
|
pytest-rerunfailures,
|
||
|
pythonOlder,
|
||
|
vine,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "amqp";
|
||
|
version = "5.2.0";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-oez/QlrQY61CpIbJAoB9FIIxFIHIrZWnJpSyl1519/0=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ vine ];
|
||
|
|
||
|
__darwinAllowLocalNetworking = true;
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pytestCheckHook
|
||
|
pytest-rerunfailures
|
||
|
];
|
||
|
|
||
|
disabledTests = [
|
||
|
# Requires network access
|
||
|
"test_rmq.py"
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "amqp" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python client for the Advanced Message Queuing Procotol (AMQP). This is a fork of amqplib which is maintained by the Celery project";
|
||
|
homepage = "https://github.com/celery/py-amqp";
|
||
|
changelog = "https://github.com/celery/py-amqp/releases/tag/v${version}";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|