nixpkgs/pkgs/development/python-modules/pika/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

54 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, gevent
, nose2
, mock
, twisted
, tornado
}:
buildPythonPackage rec {
pname = "pika";
version = "1.3.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "pika";
repo = "pika";
rev = "refs/tags/${version}";
sha256 = "sha256-j+5AF/+MlyMl3JXh+bo7pHxohbso17CJokcDR7uroz8=";
};
propagatedBuildInputs = [ gevent tornado twisted ];
nativeCheckInputs = [ nose2 mock ];
postPatch = ''
# don't stop at first test failure
# don't run acceptance tests because they access the network
# don't report test coverage
substituteInPlace nose2.cfg \
--replace "stop = 1" "stop = 0" \
--replace "tests=tests/unit,tests/acceptance" "tests=tests/unit" \
--replace "with-coverage = 1" "with-coverage = 0"
'';
doCheck = false; # tests require rabbitmq instance, unsure how to skip
checkPhase = ''
runHook preCheck
PIKA_TEST_TLS=true nose2 -v
runHook postCheck
'';
meta = with lib; {
description = "Pure-Python implementation of the AMQP 0-9-1 protocol";
homepage = "https://pika.readthedocs.org";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}