python39Packages.eventlet: activate tests, add SuperSandro2000 as maintainer
This commit is contained in:
parent
4f6d8095fd
commit
7def23dbbb
1 changed files with 19 additions and 7 deletions
|
@ -8,6 +8,9 @@
|
||||||
, monotonic
|
, monotonic
|
||||||
, six
|
, six
|
||||||
, nose
|
, nose
|
||||||
|
, pyopenssl
|
||||||
|
, iana-etc
|
||||||
|
, libredirect
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -22,22 +25,31 @@ buildPythonPackage rec {
|
||||||
propagatedBuildInputs = [ dnspython greenlet monotonic six ]
|
propagatedBuildInputs = [ dnspython greenlet monotonic six ]
|
||||||
++ lib.optional (pythonOlder "3.4") enum34;
|
++ lib.optional (pythonOlder "3.4") enum34;
|
||||||
|
|
||||||
prePatch = ''
|
checkInputs = [ nose pyopenssl ];
|
||||||
substituteInPlace setup.py \
|
|
||||||
--replace "dnspython >= 1.15.0, < 2.0.0" "dnspython"
|
preCheck = ''
|
||||||
|
echo "nameserver 127.0.0.1" > resolv.conf
|
||||||
|
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols:/etc/resolv.conf=$(realpath resolv.conf)
|
||||||
|
export LD_PRELOAD=${libredirect}/lib/libredirect.so
|
||||||
|
|
||||||
|
export EVENTLET_IMPORT_VERSION_ONLY=0
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
checkPhase = ''
|
||||||
|
runHook preCheck
|
||||||
|
|
||||||
doCheck = false; # too much transient errors to bother
|
nosetests --exclude test_getaddrinfo --exclude test_hosts_no_network
|
||||||
|
|
||||||
|
runHook postCheck
|
||||||
|
'';
|
||||||
|
|
||||||
# unfortunately, it needs /etc/protocol to be present to not fail
|
# unfortunately, it needs /etc/protocol to be present to not fail
|
||||||
#pythonImportsCheck = [ "eventlet" ];
|
# pythonImportsCheck = [ "eventlet" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://pypi.python.org/pypi/eventlet/";
|
homepage = "https://pypi.python.org/pypi/eventlet/";
|
||||||
description = "A concurrent networking library for Python";
|
description = "A concurrent networking library for Python";
|
||||||
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue