python311Packages.pydevd: 2.9.6 -> 2.10.0

This commit is contained in:
Martin Weinelt 2023-12-12 03:00:49 +01:00
parent a943bb721c
commit 214586f97d
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -2,7 +2,7 @@
, lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, setuptools
, numpy
, psutil
, pytestCheckHook
@ -13,8 +13,8 @@
buildPythonPackage rec {
pname = "pydevd";
version = "2.9.6";
format = "setuptools";
version = "2.10.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -22,16 +22,11 @@ buildPythonPackage rec {
owner = "fabioz";
repo = "PyDev.Debugger";
rev = "pydev_debugger_${lib.replaceStrings ["."] ["_"] version}";
hash = "sha256-TDU/V7kY7zVxiP4OVjGqpsRVYplpkgCly2qAOqhZONo=";
hash = "sha256-1tWiPj30x/ZXIBu2qzUCpyF1bLsJ0wW1QaxklD3h3A8=";
};
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=";
})
nativeBuildInputs = [
setuptools
];
__darwinAllowLocalNetworking = true;