forked from mirrors/nixpkgs
Update pkgs/development/python-modules/sentry-sdk/default.nix
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
aa305e5093
commit
9277e0002a
|
@ -137,10 +137,10 @@ buildPythonPackage rec {
|
|||
"tests/integrations/pyramid/test_pyramid.py"
|
||||
]
|
||||
# test crashes on aarch64
|
||||
++ (if stdenv.buildPlatform != "x86_64-linux" then [
|
||||
++ lib.optionals (stdenv.buildPlatform != "x86_64-linux") [
|
||||
"tests/test_transport.py"
|
||||
"tests/integrations/threading/test_threading.py"
|
||||
] else [ ]);
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sentry_sdk"
|
||||
|
|
Loading…
Reference in a new issue