mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
9051eb7100
Diff: https://github.com/Flexget/Flexget/compare/refs/tags/v3.11.29...v3.11.30 Changelog: https://github.com/Flexget/Flexget/releases/tag/v3.11.30
91 lines
1.7 KiB
Nix
91 lines
1.7 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "flexget";
|
|
version = "3.11.30";
|
|
pyproject = true;
|
|
|
|
# Fetch from GitHub in order to use `requirements.in`
|
|
src = fetchFromGitHub {
|
|
owner = "Flexget";
|
|
repo = "Flexget";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-msvNZ3kE48dNnhtUWLGxulb2iZ78hhyg7fVL2OSOdyY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# remove dependency constraints but keep environment constraints
|
|
sed 's/[~<>=][^;]*//' -i requirements.txt
|
|
'';
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
dependencies = 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
|
|
pendulum
|
|
psutil
|
|
pynzb
|
|
pyrsistent
|
|
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"
|
|
];
|
|
|
|
# ~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; [ ];
|
|
};
|
|
}
|