mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Don't install werkzeug when it is not needed
This commit is contained in:
parent
b92ae6d001
commit
bce581df37
2 changed files with 4 additions and 2 deletions
|
|
@ -14,7 +14,10 @@ davserver_radicale_git() {
|
||||||
radicale_deps
|
radicale_deps
|
||||||
}
|
}
|
||||||
|
|
||||||
radicale_deps() { radicale_storage_$RADICALE_STORAGE; }
|
radicale_deps() {
|
||||||
|
pip install --use-mirrors werkzeug
|
||||||
|
radicale_storage_$RADICALE_STORAGE
|
||||||
|
}
|
||||||
|
|
||||||
radicale_storage_database() { pip install --use-mirrors sqlalchemy pysqlite; }
|
radicale_storage_database() { pip install --use-mirrors sqlalchemy pysqlite; }
|
||||||
radicale_storage_filesystem() { true; }
|
radicale_storage_filesystem() { true; }
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
Werkzeug
|
|
||||||
pytest
|
pytest
|
||||||
mock
|
mock
|
||||||
git+https://github.com/geier/leif
|
git+https://github.com/geier/leif
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue