mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
cd265d7ad0
Diff: https://github.com/Flexget/Flexget/compare/refs/tags/v3.7.4...v3.7.5 Changelog: https://github.com/Flexget/Flexget/releases/tag/v3.7.5
84 lines
1.6 KiB
Nix
84 lines
1.6 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "flexget";
|
|
version = "3.7.5";
|
|
format = "pyproject";
|
|
|
|
# Fetch from GitHub in order to use `requirements.in`
|
|
src = fetchFromGitHub {
|
|
owner = "Flexget";
|
|
repo = "Flexget";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-abnCXRlpGp3+6zjKVOtlxjcC5VdaHjMyPC9PRlABJIA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# remove dependency constraints but keep environment constraints
|
|
sed 's/[~<>=][^;]*//' -i requirements.txt
|
|
'';
|
|
|
|
# ~400 failures
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
# See https://github.com/Flexget/Flexget/blob/master/requirements.txt
|
|
apscheduler
|
|
beautifulsoup4
|
|
click
|
|
colorama
|
|
commonmark
|
|
feedparser
|
|
guessit
|
|
html5lib
|
|
jinja2
|
|
jsonschema
|
|
loguru
|
|
more-itertools
|
|
packaging
|
|
psutil
|
|
pynzb
|
|
pyrss2gen
|
|
python-dateutil
|
|
pyyaml
|
|
rebulk
|
|
requests
|
|
rich
|
|
rpyc
|
|
sqlalchemy
|
|
typing-extensions
|
|
|
|
# WebUI requirements
|
|
cherrypy
|
|
flask-compress
|
|
flask-cors
|
|
flask-login
|
|
flask-restful
|
|
flask-restx
|
|
flask
|
|
pyparsing
|
|
werkzeug
|
|
zxcvbn
|
|
|
|
# Plugins requirements
|
|
transmission-rpc
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"flexget"
|
|
"flexget.plugins.clients.transmission"
|
|
];
|
|
|
|
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; [ marsam ];
|
|
};
|
|
}
|