Merge #246263: python3Packages.pydevd: fix tests against numpy 1.25

...into staging-next
This commit is contained in:
Vladimír Čunát 2023-08-03 15:33:57 +02:00
commit 56097a1cbf
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -2,6 +2,7 @@
, lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, numpy
, psutil
, pytestCheckHook
@ -24,6 +25,17 @@ buildPythonPackage rec {
hash = "sha256-TDU/V7kY7zVxiP4OVjGqpsRVYplpkgCly2qAOqhZONo=";
};
patches = [
# https://github.com/fabioz/PyDev.Debugger/pull/258
(fetchpatch {
name = "numpy-1.25-test-compatibility.patch";
url = "https://github.com/fabioz/PyDev.Debugger/commit/6f637d951cda62dc2202a2c7b6af526c4d1e8a00.patch";
hash = "sha256-DLzZZwQHtqGZGA8nsBLNQqamuI4xUfQ89Gd21sJa9/s=";
})
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
numpy
psutil