106 lines
2.4 KiB
Nix
106 lines
2.4 KiB
Nix
|
{ lib
|
||
|
, python3
|
||
|
, fetchFromGitHub
|
||
|
}:
|
||
|
|
||
|
python3.pkgs.buildPythonApplication rec {
|
||
|
pname = "flexget";
|
||
|
version = "3.11.49";
|
||
|
pyproject = true;
|
||
|
|
||
|
# Fetch from GitHub in order to use `requirements.in`
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Flexget";
|
||
|
repo = "Flexget";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-/c6nJNIo6gqeANftbtuOatU+JGYXdMQgrPI0/EdH9LI=";
|
||
|
};
|
||
|
|
||
|
# relax dep constrains, keep environment constraints
|
||
|
pythonRelaxDeps = true;
|
||
|
|
||
|
build-system = with python3.pkgs; [ setuptools ];
|
||
|
|
||
|
dependencies = with python3.pkgs; [
|
||
|
# See https://github.com/Flexget/Flexget/blob/master/pyproject.toml
|
||
|
# and https://github.com/Flexget/Flexget/blob/develop/requirements.txt
|
||
|
apscheduler
|
||
|
beautifulsoup4
|
||
|
colorama
|
||
|
feedparser
|
||
|
guessit
|
||
|
html5lib
|
||
|
jinja2
|
||
|
jsonschema
|
||
|
loguru
|
||
|
psutil
|
||
|
pydantic
|
||
|
pynzb
|
||
|
pyrss2gen
|
||
|
python-dateutil
|
||
|
pyyaml
|
||
|
rebulk
|
||
|
requests
|
||
|
rich
|
||
|
rpyc
|
||
|
sqlalchemy
|
||
|
zstandard
|
||
|
|
||
|
# WebUI requirements
|
||
|
cherrypy
|
||
|
flask-compress
|
||
|
flask-cors
|
||
|
flask-login
|
||
|
flask-restx
|
||
|
flask
|
||
|
packaging
|
||
|
pyparsing
|
||
|
werkzeug
|
||
|
zxcvbn
|
||
|
pendulum
|
||
|
|
||
|
# Plugins requirements
|
||
|
transmission-rpc
|
||
|
qbittorrent-api
|
||
|
deluge-client
|
||
|
cloudscraper
|
||
|
python-telegram-bot
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"flexget"
|
||
|
"flexget.api.core.authentication"
|
||
|
"flexget.api.core.database"
|
||
|
"flexget.api.core.plugins"
|
||
|
"flexget.api.core.schema"
|
||
|
"flexget.api.core.server"
|
||
|
"flexget.api.core.tasks"
|
||
|
"flexget.api.core.user"
|
||
|
"flexget.components.thetvdb.api"
|
||
|
"flexget.components.tmdb.api"
|
||
|
"flexget.components.trakt.api"
|
||
|
"flexget.components.tvmaze.api"
|
||
|
"flexget.plugins.clients.aria2"
|
||
|
"flexget.plugins.clients.deluge"
|
||
|
"flexget.plugins.clients.nzbget"
|
||
|
"flexget.plugins.clients.pyload"
|
||
|
"flexget.plugins.clients.qbittorrent"
|
||
|
"flexget.plugins.clients.rtorrent"
|
||
|
"flexget.plugins.clients.transmission"
|
||
|
"flexget.plugins.services.kodi_library"
|
||
|
"flexget.plugins.services.myepisodes"
|
||
|
"flexget.plugins.services.pogcal_acquired"
|
||
|
];
|
||
|
|
||
|
# ~400 failures
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://flexget.com/";
|
||
|
changelog = "https://github.com/Flexget/Flexget/releases/tag/v${version}";
|
||
|
description = "Multipurpose automation tool for all of your media";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ pbsds ];
|
||
|
};
|
||
|
}
|