python3Packages.ipydatawidgets: deselect tests with disabledTestPaths and __structuredAttrs = true

Changed files
+5 -3
pkgs
development
python-modules
ipydatawidgets
+5 -3
pkgs/development/python-modules/ipydatawidgets/default.nix
···
}:
buildPythonPackage rec {
pname = "ipydatawidgets";
version = "4.3.5";
format = "setuptools";
···
# Tests bind ports
__darwinAllowLocalNetworking = true;
-
pytestFlagsArray = [
# https://github.com/vidartf/ipydatawidgets/issues/62
-
"--deselect=ipydatawidgets/tests/test_ndarray_trait.py::test_dtype_coerce"
# https://github.com/vidartf/ipydatawidgets/issues/63
-
"--deselect=examples/test.ipynb::Cell\\\ 3"
];
meta = {
···
}:
buildPythonPackage rec {
+
__structuredAttrs = true;
+
pname = "ipydatawidgets";
version = "4.3.5";
format = "setuptools";
···
# Tests bind ports
__darwinAllowLocalNetworking = true;
+
disabledTestPaths = [
# https://github.com/vidartf/ipydatawidgets/issues/62
+
"ipydatawidgets/tests/test_ndarray_trait.py::test_dtype_coerce"
# https://github.com/vidartf/ipydatawidgets/issues/63
+
"examples/test.ipynb::Cell 3"
];
meta = {