1 { lib, fetchFromGitHub, buildPythonPackage, pythonOlder, nose }:
3 buildPythonPackage rec {
6 disabled = pythonOlder "3.6";
8 # There are no tests on the pypi source
9 src = fetchFromGitHub {
13 sha256 = "0p0cs67l40npkvwgn5sb18l1b6df1b9fg6rzlqkwk2aa0v3cpvhf";
16 checkInputs = [ nose ];
18 # Some tests are nondeterministic. (`grep sleep -r tests`)
19 # test_timeout_schedule_action_cancel: https://hydra.nixos.org/build/74954646
20 # test_new_thread_scheduler_timeout: https://hydra.nixos.org/build/74949851
24 homepage = "https://github.com/ReactiveX/RxPY";
25 description = "Reactive Extensions for Python";
26 maintainers = with lib.maintainers; [ thanegill ];
27 license = lib.licenses.asl20;