Merge pull request #172865 from drewrisinger/dr-pr-fix-fastjsonschema-darwin

python3Packages.fastjsonschema: fix Darwin build

authored by Sandro and committed by GitHub 53232aec fb222e00

+3
+3
pkgs/development/python-modules/fastjsonschema/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pytestCheckHook ··· 31 # these tests require network access 32 "remote ref" 33 "definitions" 34 ]; 35 36 pythonImportsCheck = [
··· 1 { lib 2 + , stdenv 3 , buildPythonPackage 4 , fetchFromGitHub 5 , pytestCheckHook ··· 32 # these tests require network access 33 "remote ref" 34 "definitions" 35 + ] ++ lib.optionals stdenv.isDarwin [ 36 + "test_compile_to_code_custom_format" # cannot import temporary module created during test 37 ]; 38 39 pythonImportsCheck = [