python3Packages.adb-enhanced: patch dependencies to fix build

given how infrequently psutil releases, I've decided not to use `pythonRelaxDeps` in case the pin is actually relevant (or becomes relevant in the future)
This commit is contained in:
Willy
2026-05-08 23:36:11 +02:00
parent 25305bb177
commit 265f5b05db
@@ -3,6 +3,7 @@
buildPythonPackage,
docopt,
fetchFromGitHub,
fetchpatch,
setuptools,
jdk11,
psutil,
@@ -19,6 +20,13 @@ buildPythonPackage (finalAttrs: {
tag = finalAttrs.version;
hash = "sha256-YuQgz3WeN50hg/IgdoNV61St9gpu6lcgFfKCfI/ENl0=";
};
patches = [
# psutil==7.2.1 -> psutil==7.2.2
(fetchpatch {
url = "https://github.com/ashishb/adb-enhanced/pull/337.patch";
hash = "sha256-BRpdgLS6CNkmyj+OwnIaqfkmz1jzZg/qtoiN32jUIog=";
})
];
build-system = [ setuptools ];