a7e93690af
The tests are nondeterminstic.
29 lines
797 B
Nix
29 lines
797 B
Nix
{ lib, fetchFromGitHub, buildPythonPackage, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rx";
|
|
version = "1.6.0";
|
|
|
|
# There are no tests on the pypi source
|
|
src = fetchFromGitHub {
|
|
owner = "ReactiveX";
|
|
repo = "rxpy";
|
|
rev = version;
|
|
sha256 = "174xi2j36igxmaqcgl5p64p31a7z19v62xb5czybjw72gpyyfyri";
|
|
};
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
# Some tests are nondeterministic. (`grep sleep -r tests`)
|
|
# test_timeout_schedule_action_cancel: https://hydra.nixos.org/build/74954646
|
|
# test_new_thread_scheduler_timeout: https://hydra.nixos.org/build/74949851
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = https://github.com/ReactiveX/RxPY;
|
|
description = "Reactive Extensions for Python";
|
|
maintainers = with lib.maintainers; [ thanegill ];
|
|
license = lib.licenses.asl20;
|
|
};
|
|
}
|