2021-02-22 11:10:46 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
2021-02-23 11:23:20 +00:00
|
|
|
, nixosTests
|
2021-02-22 11:10:46 +00:00
|
|
|
, python3
|
2023-02-03 09:04:24 +00:00
|
|
|
, fetchpatch
|
2021-02-22 11:10:46 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "calibre-web";
|
2022-10-15 11:25:26 +00:00
|
|
|
version = "0.6.19";
|
2021-02-22 11:10:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "janeczku";
|
|
|
|
repo = "calibre-web";
|
|
|
|
rev = version;
|
2022-10-15 11:25:26 +00:00
|
|
|
hash = "sha256-mNYLQ+3u6xRaoZ5oH6HdylFfgz1fq1ZB86AWk9vULWQ=";
|
2021-02-22 11:10:46 +00:00
|
|
|
};
|
|
|
|
|
2022-06-08 11:17:54 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2022-10-15 11:25:26 +00:00
|
|
|
APScheduler
|
2022-04-30 09:42:32 +00:00
|
|
|
advocate
|
2022-06-08 11:17:54 +00:00
|
|
|
chardet
|
2022-01-12 15:09:31 +00:00
|
|
|
flask-babel
|
2022-10-21 05:56:36 +00:00
|
|
|
flask-login
|
2022-01-12 15:09:31 +00:00
|
|
|
flask_principal
|
2022-05-24 04:09:51 +00:00
|
|
|
flask-wtf
|
2022-01-12 15:09:31 +00:00
|
|
|
iso-639
|
|
|
|
lxml
|
|
|
|
pypdf3
|
|
|
|
requests
|
|
|
|
sqlalchemy
|
|
|
|
tornado
|
|
|
|
unidecode
|
2022-11-14 03:27:14 +00:00
|
|
|
wand
|
2022-04-30 09:42:32 +00:00
|
|
|
werkzeug
|
2022-01-12 15:09:31 +00:00
|
|
|
];
|
|
|
|
|
2021-02-22 11:10:46 +00:00
|
|
|
patches = [
|
|
|
|
# default-logger.patch switches default logger to /dev/stdout. Otherwise calibre-web tries to open a file relative
|
|
|
|
# to its location, which can't be done as the store is read-only. Log file location can later be configured using UI
|
|
|
|
# if needed.
|
|
|
|
./default-logger.patch
|
|
|
|
# DB migrations adds an env var __RUN_MIGRATIONS_ANDEXIT that, when set, instructs calibre-web to run DB migrations
|
|
|
|
# and exit. This is gonna be used to configure calibre-web declaratively, as most of its configuration parameters
|
|
|
|
# are stored in the DB.
|
|
|
|
./db-migrations.patch
|
2023-02-03 09:04:24 +00:00
|
|
|
# Handle version 3.0 of flask-babel
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/janeczku/calibre-web/commit/94a6931d48d347ae6c07e2b5f0301e8cf97cf53d.patch";
|
|
|
|
excludes = [ "requirements.txt" ];
|
|
|
|
hash = "sha256-0DQ+LbIOOwjBXQh+b1w8dYQ3s+xZ6nFoH5GvgJdBAFI=";
|
|
|
|
})
|
2021-02-22 11:10:46 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# calibre-web doesn't follow setuptools directory structure. The following is taken from the script
|
|
|
|
# that calibre-web's maintainer is using to package it:
|
|
|
|
# https://github.com/OzzieIsaacs/calibre-web-test/blob/master/build/make_release.py
|
|
|
|
postPatch = ''
|
|
|
|
mkdir -p src/calibreweb
|
|
|
|
mv cps.py src/calibreweb/__init__.py
|
|
|
|
mv cps src/calibreweb
|
2021-11-02 12:47:56 +00:00
|
|
|
|
2022-11-28 13:46:56 +00:00
|
|
|
sed -i "/backports_abc/d" setup.cfg
|
|
|
|
|
2021-11-02 12:47:56 +00:00
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace "cps = calibreweb:main" "calibre-web = calibreweb:main" \
|
2022-07-18 17:45:35 +00:00
|
|
|
--replace "chardet>=3.0.0,<4.1.0" "chardet>=3.0.0,<6" \
|
2022-04-25 20:25:37 +00:00
|
|
|
--replace "Flask>=1.0.2,<2.1.0" "Flask>=1.0.2" \
|
2023-02-03 09:04:24 +00:00
|
|
|
--replace "Flask-Babel>=0.11.1,<2.1.0" "Flask-Babel>=0.11.1" \
|
2022-10-15 11:25:26 +00:00
|
|
|
--replace "Flask-Login>=0.3.2,<0.6.2" "Flask-Login>=0.3.2" \
|
2022-04-30 09:42:32 +00:00
|
|
|
--replace "flask-wtf>=0.14.2,<1.1.0" "flask-wtf>=0.14.2" \
|
|
|
|
--replace "lxml>=3.8.0,<4.9.0" "lxml>=3.8.0" \
|
2022-07-18 17:45:35 +00:00
|
|
|
--replace "tornado>=4.1,<6.2" "tornado>=4.1,<7" \
|
2022-04-30 09:42:32 +00:00
|
|
|
--replace "PyPDF3>=1.0.0,<1.0.7" "PyPDF3>=1.0.0" \
|
|
|
|
--replace "requests>=2.11.1,<2.28.0" "requests" \
|
|
|
|
--replace "unidecode>=0.04.19,<1.4.0" "unidecode>=0.04.19" \
|
|
|
|
--replace "werkzeug<2.1.0" ""
|
2021-02-22 11:10:46 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Upstream repo doesn't provide any tests.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-02-23 11:23:20 +00:00
|
|
|
passthru.tests.calibre-web = nixosTests.calibre-web;
|
|
|
|
|
2021-02-22 11:10:46 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Web app for browsing, reading and downloading eBooks stored in a Calibre database";
|
|
|
|
homepage = "https://github.com/janeczku/calibre-web";
|
|
|
|
license = licenses.gpl3Plus;
|
2022-01-12 15:09:31 +00:00
|
|
|
maintainers = with maintainers; [ pborzenkov ];
|
2021-02-22 11:10:46 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|