mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
ea56dbfbc0
This fixes the following error in the `selectors2` test suite: ``` ====================================================================== ERROR: test_above_fd_setsize (tests.test_selectors2.PollSelectorTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/private/var/folders/5h/b11m6fxj2tqgbxwz5bgjy42c0000gn/T/nix-build-python3.8-selectors2-2.0.1.drv-0/selectors2-2.0.1/tests/test_selectors2.py", line 530, in test_above_fd_setsize self.assertEqual(limit_nofile // 2, len(s.select())) File "/private/var/folders/5h/b11m6fxj2tqgbxwz5bgjy42c0000gn/T/nix-build-python3.8-selectors2-2.0.1.drv-0/selectors2-2.0.1/selectors2.py", line 402, in select fd_events = _syscall_wrapper(self._wrap_poll, True, timeout=timeout) File "/private/var/folders/5h/b11m6fxj2tqgbxwz5bgjy42c0000gn/T/nix-build-python3.8-selectors2-2.0.1.drv-0/selectors2-2.0.1/selectors2.py", line 662, in _syscall_wrapper return func(*args, **kwargs) File "/private/var/folders/5h/b11m6fxj2tqgbxwz5bgjy42c0000gn/T/nix-build-python3.8-selectors2-2.0.1.drv-0/selectors2-2.0.1/selectors2.py", line 397, in _wrap_poll result = self._poll.poll(timeout) OSError: [Errno 22] Invalid argument ---------------------------------------------------------------------- ```
31 lines
847 B
Nix
31 lines
847 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, nose, psutil, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.0.1";
|
|
pname = "selectors2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "81b77c4c6f607248b1d6bbdb5935403fef294b224b842a830bbfabb400c81884";
|
|
};
|
|
|
|
checkInputs = [ nose psutil mock ];
|
|
|
|
checkPhase = ''
|
|
# https://github.com/NixOS/nixpkgs/pull/46186#issuecomment-419450064
|
|
# Trick to disable certain tests that depend on timing which
|
|
# will always fail on hydra
|
|
export TRAVIS=""
|
|
nosetests tests/test_selectors2.py \
|
|
--exclude=test_above_fd_setsize
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.github.com/SethMichaelLarson/selectors2";
|
|
description = "Back-ported, durable, and portable selectors";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|