python3Packages.maestral: relax dropbox dependency

This commit is contained in:
Stefan Frijters 2024-05-16 15:15:14 +02:00
parent ac0ccbf8e1
commit 5643058ab7
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F

View File

@ -24,6 +24,7 @@
, typing-extensions
, watchdog
, xattr
, fetchpatch
, pytestCheckHook
, nixosTests
}:
@ -69,6 +70,14 @@ buildPythonPackage rec {
rubicon-objc
];
patches = [
(fetchpatch {
name = "upgrade-dropbox-version-bounds";
url = "https://github.com/samschott/maestral/commit/8fd581fa503391534913afbc33a61132ff2e21ce.patch";
hash = "sha256-2Dke9iF/5Ptsf3CSRHUkjdFRrmdKY+L3sILRMyYrUH0=";
})
];
makeWrapperArgs = [
# Add the installed directories to the python path so the daemon can find them
"--prefix PYTHONPATH : ${makePythonPath dependencies}"