Merge pull request #297682 from SFrijters/maestral-fix

python3Packages.maestral: fix build
This commit is contained in:
Martin Weinelt 2024-03-21 14:04:26 +01:00 committed by GitHub
commit f7a87fc21f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,6 +23,7 @@
, watchdog
, pytestCheckHook
, nixosTests
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
@ -67,6 +68,14 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
pythonRelaxDepsHook
];
pythonRelaxDeps = [
# https://github.com/samschott/maestral/commit/2c50d2ddb49a845ea97bd6b0f68c45d723fb304c
# Allow the use of survey >= 5
# Remove after new maestral release along with pythonRelaxDepsHook
"survey"
];
preCheck = ''