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

python3Packages.fastjsonschema: fix Darwin build
main
Sandro 2 years ago committed by GitHub
commit 53232aec11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      pkgs/development/python-modules/fastjsonschema/default.nix

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
@ -31,6 +32,8 @@ buildPythonPackage rec {
# these tests require network access
"remote ref"
"definitions"
] ++ lib.optionals stdenv.isDarwin [
"test_compile_to_code_custom_format" # cannot import temporary module created during test
];
pythonImportsCheck = [

Loading…
Cancel
Save