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

71 lines
1.5 KiB
Nix
Raw Normal View History

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