python313Packages.python-fx: disable failing tests

Changed files
+4
pkgs
development
python-modules
python-fx
+4
pkgs/development/python-modules/python-fx/default.nix
···
rm src/pyfx/model/common/jsonpath/*.py # upstream checks in generated files, remove to ensure they were regenerated
antlr -Dlanguage=Python3 -visitor src/pyfx/model/common/jsonpath/*.g4
rm src/pyfx/model/common/jsonpath/*.{g4,interp,tokens} # no need to install
'';
pythonRelaxDeps = true;
···
rm src/pyfx/model/common/jsonpath/*.py # upstream checks in generated files, remove to ensure they were regenerated
antlr -Dlanguage=Python3 -visitor src/pyfx/model/common/jsonpath/*.g4
rm src/pyfx/model/common/jsonpath/*.{g4,interp,tokens} # no need to install
+
+
# https://github.com/cielong/pyfx/pull/148
+
substituteInPlace src/pyfx/view/common/frame.py \
+
--replace-fail "self.__super.__init__()" "super().__init__()"
'';
pythonRelaxDeps = true;