nixpkgs/pkgs/applications/networking/flexget/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

91 lines
1.7 KiB
Nix
Raw Normal View History

2022-02-14 16:02:58 +00:00
{ lib
2023-03-19 04:20:00 +00:00
, python3
, fetchPypi
2022-02-14 16:02:58 +00:00
, fetchFromGitHub
}:
2018-02-25 16:49:36 +00:00
python3.pkgs.buildPythonApplication rec {
2021-07-09 16:56:21 +00:00
pname = "flexget";
2024-04-01 19:15:41 +00:00
version = "3.11.27";
pyproject = true;
2021-08-22 05:54:55 +00:00
# Fetch from GitHub in order to use `requirements.in`
src = fetchFromGitHub {
2023-03-19 04:20:00 +00:00
owner = "Flexget";
repo = "Flexget";
2022-05-08 02:17:13 +00:00
rev = "refs/tags/v${version}";
2024-04-01 19:15:41 +00:00
hash = "sha256-0ENBUOH+/pe4OsVQ6cu1xLTPPHtUMNARQGVyxOk60X0=";
};
2017-05-01 08:06:20 +00:00
postPatch = ''
2022-11-07 07:48:39 +00:00
# remove dependency constraints but keep environment constraints
sed 's/[~<>=][^;]*//' -i requirements.txt
2017-03-31 02:37:07 +00:00
'';
2017-05-01 08:06:20 +00:00
2024-03-28 08:32:04 +00:00
build-system = with python3.pkgs; [
setuptools
wheel
];
2024-03-28 08:32:04 +00:00
dependencies = with python3.pkgs; [
2022-11-07 07:48:39 +00:00
# See https://github.com/Flexget/Flexget/blob/master/requirements.txt
apscheduler
2020-01-04 09:21:00 +00:00
beautifulsoup4
click
colorama
2023-03-17 08:16:38 +00:00
commonmark
2020-01-04 09:21:00 +00:00
feedparser
guessit
html5lib
jinja2
jsonschema
loguru
2020-01-20 23:18:18 +00:00
more-itertools
2022-07-16 04:20:00 +00:00
packaging
pendulum
2021-10-28 02:52:23 +00:00
psutil
2020-01-04 09:21:00 +00:00
pynzb
pyrsistent
pyrss2gen
python-dateutil
2020-01-04 09:21:00 +00:00
pyyaml
rebulk
requests
2021-10-28 02:52:23 +00:00
rich
2020-01-04 09:21:00 +00:00
rpyc
sqlalchemy
2022-11-07 07:48:39 +00:00
typing-extensions
2021-10-28 02:52:23 +00:00
# WebUI requirements
cherrypy
flask-compress
flask-cors
flask-login
2021-10-28 02:52:23 +00:00
flask-restful
flask-restx
flask
pyparsing
werkzeug
2020-01-04 09:21:00 +00:00
zxcvbn
2021-10-28 02:52:23 +00:00
# Plugins requirements
transmission-rpc
2020-01-04 09:21:00 +00:00
];
2023-03-10 04:20:00 +00:00
pythonImportsCheck = [
"flexget"
"flexget.plugins.clients.transmission"
2023-03-10 04:20:00 +00:00
];
# ~400 failures
doCheck = false;
2018-02-25 16:49:36 +00:00
meta = with lib; {
2021-07-09 16:56:21 +00:00
homepage = "https://flexget.com/";
2022-12-12 09:54:47 +00:00
changelog = "https://github.com/Flexget/Flexget/releases/tag/v${version}";
2020-01-04 09:21:00 +00:00
description = "Multipurpose automation tool for all of your media";
2021-07-09 16:56:21 +00:00
license = licenses.mit;
2020-01-04 09:22:00 +00:00
maintainers = with maintainers; [ marsam ];
};
2017-01-04 08:34:16 +00:00
}