python3Packages.maestral: fix build
This commit is contained in:
parent
befc64a589
commit
32791fc7d4
1 changed files with 9 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
||||||
, watchdog
|
, watchdog
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, nixosTests
|
, nixosTests
|
||||||
|
, pythonRelaxDepsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -67,6 +68,14 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytestCheckHook
|
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 = ''
|
preCheck = ''
|
||||||
|
|
Loading…
Reference in a new issue