about summary refs log tree commit diff
path: root/pkgs/servers/calibre-web
AgeCommit message (Collapse)AuthorFilesLines
2022-01-21calibre-web: 0.6.14 -> 0.6.15R. Ryantm1-2/+2
2022-01-12calibre-web: relax lxml constraintFabian Affolter1-20/+21
2021-12-13calibre-web: 0.6.13 -> 0.6.14Pavel Borzenkov1-10/+10
2021-10-06Merge pull request #139651 from pborzenkov/calibre-web-0.6.13Robert Scott1-2/+3
calibre-web: 0.6.12 -> 0.6.13
2021-10-04calibre-web: allow later unidecode releaseFabian Affolter1-1/+2
2021-09-27calibre-web: 0.6.12 -> 0.6.13Pavel Borzenkov1-2/+3
calibre-web no longer starts without proper calibre DB path configured, so the default testcase (completely unconfigured) is removed.
2021-09-05calibre-web: relax requests constraintsMartin Weinelt1-3/+3
2021-06-27calibre-web: 0.6.11 -> 0.6.12Bruno BELANYI1-6/+4
2021-05-21calibre-web: Update dependency versionpolygon1-1/+2
Babel requirement is <2.9 and nixpkgs provides 2.9.0 Updated the requirement definition. Upstream did this as well and according to the Babel changelogs, there were no breaking changes between 2.8 and 2.9. Server started up properly, no functionality test, though.
2021-05-05calibre-web: fix build (#121796)Robert Schütz1-0/+2
2021-04-03calibre-web: don't require singledispatchFrederik Rietdijk1-1/+0
which is a Python 2 only package.
2021-03-27nixos/calibre-web: init modulePavel Borzenkov1-0/+3
2021-03-21calibre-web: init at 0.6.11Pavel Borzenkov3-0/+100
There are two patches applied to 'calibre-web' in order to make it more NixOS friendly: - default-logger.patch switches default log output to /dev/stdout, as otherwise calibre-web tries to open a file relative to its location, which it can't do as the store is read-only. It's not possible to pass log file location via command line flags. - run-migrations.patch adds an env var __RUN_MIGRATIONS_AND_EXIT that, when set, instructs calibre-web to run DB migrations and exit. As almost all config parameters are configured via UI in sqlite3 DB, this patch allows the DB to be pre-created so it can be updated by systemd pre-start script later. Thus, allowing calibre-web to be configured declaratively.