mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python312Packages.rx: update disable test reason (#336219)
This commit is contained in:
commit
478157df7d
@ -3,13 +3,14 @@
|
||||
fetchPypi,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
nose,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rx";
|
||||
version = "3.2.0";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
# Use fetchPypi to avoid the updater script to migrate it to `reactivex` which
|
||||
@ -20,12 +21,9 @@ buildPythonPackage rec {
|
||||
sha256 = "b657ca2b45aa485da2f7dcfd09fac2e554f7ac51ff3c2f8f2ff962ecd963d91c";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [ nose ];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
# 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;
|
||||
doCheck = false; # PyPI tarball does not provides tests
|
||||
|
||||
pythonImportsCheck = [ "rx" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user