mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
python3Packages.pika: enable tests (#122170)
This commit is contained in:
parent
3d385c7894
commit
282576e2ef
@ -1,6 +1,6 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchFromGitHub
|
||||
, gevent
|
||||
, nose
|
||||
, mock
|
||||
@ -12,12 +12,34 @@ buildPythonPackage rec {
|
||||
pname = "pika";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f023d6ac581086b124190cb3dc81dd581a149d216fa4540ac34f9be1e3970b89";
|
||||
src = fetchFromGitHub {
|
||||
owner = "pika";
|
||||
repo = "pika";
|
||||
rev = version;
|
||||
sha256 = "sha256-Wog6Wxa8V/zv/bBrFOigZi6KE5qRf82bf1GK2XwvpDI=";
|
||||
};
|
||||
|
||||
checkInputs = [ nose mock twisted tornado gevent ];
|
||||
propagatedBuildInputs = [ gevent tornado twisted ];
|
||||
|
||||
checkInputs = [ nose 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 setup.cfg \
|
||||
--replace "stop = 1" "stop = 0" \
|
||||
--replace "tests=tests/unit,tests/acceptance" "tests=tests/unit" \
|
||||
--replace "with-coverage = 1" "with-coverage = 0"
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
|
||||
PIKA_TEST_TLS=true nosetests
|
||||
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pure-Python implementation of the AMQP 0-9-1 protocol";
|
||||
|
Loading…
Reference in New Issue
Block a user