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

70 lines
1.5 KiB
Nix
Raw Normal View History

2020-01-04 09:21:00 +00:00
{ lib, python3Packages }:
2018-02-25 16:49:36 +00:00
2020-01-04 09:21:00 +00:00
python3Packages.buildPythonApplication rec {
2018-02-25 16:49:36 +00:00
pname = "FlexGet";
2021-05-21 04:20:00 +00:00
version = "3.1.127";
2020-01-04 09:21:00 +00:00
src = python3Packages.fetchPypi {
2018-02-25 16:49:36 +00:00
inherit pname version;
2021-05-21 04:20:00 +00:00
sha256 = "25a973eb54f2f9ccd422d536b29038c570de3584b8174d993119e3c6b434cc54";
};
2017-05-01 08:06:20 +00:00
postPatch = ''
2018-02-25 16:49:36 +00:00
# remove dependency constraints
sed 's/==\([0-9]\.\?\)\+//' -i requirements.txt
2019-05-30 12:47:00 +00:00
# "zxcvbn-python" was renamed to "zxcvbn", and we don't have the former in
# nixpkgs. See: https://github.com/NixOS/nixpkgs/issues/62110
substituteInPlace requirements.txt --replace "zxcvbn-python" "zxcvbn"
2017-03-31 02:37:07 +00:00
'';
2017-05-01 08:06:20 +00:00
2018-02-25 16:49:36 +00:00
# ~400 failures
doCheck = false;
2020-01-04 09:21:00 +00:00
propagatedBuildInputs = with python3Packages; [
2018-12-23 15:30:57 +00:00
# See https://github.com/Flexget/Flexget/blob/master/requirements.in
2020-01-04 09:21:00 +00:00
APScheduler
beautifulsoup4
cherrypy
2020-12-10 04:20:00 +00:00
colorama
2020-01-04 09:21:00 +00:00
colorclass
feedparser
flask-compress
flask-cors
flask_login
flask-restful
2020-08-14 04:23:00 +00:00
flask-restx
2020-01-04 09:21:00 +00:00
flask
2021-05-09 04:20:00 +00:00
greenlet
2020-01-04 09:21:00 +00:00
guessit
html5lib
jinja2
jsonschema
loguru
2020-01-20 23:18:18 +00:00
more-itertools
2019-04-01 14:59:54 +00:00
progressbar
2020-01-04 09:21:00 +00:00
pynzb
pyparsing
PyRSS2Gen
python-dateutil
2020-01-04 09:21:00 +00:00
pyyaml
rebulk
requests
rpyc
2020-12-10 04:20:00 +00:00
sgmllib3k
2020-01-04 09:21:00 +00:00
sqlalchemy
terminaltables
zxcvbn
2021-05-02 11:39:39 +00:00
psutil
2020-03-11 15:30:32 +00:00
# plugins
transmission-rpc
2020-01-04 09:21:00 +00:00
];
2018-02-25 16:49:36 +00:00
meta = with lib; {
2020-01-04 09:21:00 +00:00
homepage = "https://flexget.com/";
description = "Multipurpose automation tool for all of your media";
2018-02-25 16:49:36 +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
}