nixpkgs/pkgs/development/python-modules/rx/default.nix

29 lines
797 B
Nix
Raw Normal View History

2018-01-10 18:29:37 +00:00
{ lib, fetchFromGitHub, buildPythonPackage, nose }:
buildPythonPackage rec {
pname = "rx";
version = "1.6.1";
2018-01-10 18:29:37 +00:00
# There are no tests on the pypi source
src = fetchFromGitHub {
owner = "ReactiveX";
repo = "rxpy";
rev = version;
sha256 = "14bca67a26clzcf2abz2yb8g9lfxffjs2l236dp966sp0lfbpsn5";
2018-01-10 18:29:37 +00:00
};
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;
2018-01-10 18:29:37 +00:00
meta = {
homepage = https://github.com/ReactiveX/RxPY;
description = "Reactive Extensions for Python";
maintainers = with lib.maintainers; [ thanegill ];
license = lib.licenses.asl20;
};
}