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

82 lines
2.1 KiB
Nix
Raw Normal View History

2018-02-25 17:49:36 +01:00
{ lib, python
, delugeSupport ? true, deluge ? null
}:
2018-02-25 17:49:36 +01:00
assert delugeSupport -> deluge != null;
2018-03-15 10:13:08 +01:00
# Flexget have been a trouble maker in the past,
# if you see flexget breaking when updating packages, don't worry.
# The current state is that we have no active maintainers for this package.
# -- Mic92
2018-02-25 17:49:36 +01:00
let
python' = python.override { inherit packageOverrides; };
packageOverrides = self: super: {
sqlalchemy = super.sqlalchemy.overridePythonAttrs (old: rec {
2018-11-22 17:01:48 +01:00
version = "1.2.6";
2018-02-25 17:49:36 +01:00
src = old.src.override {
inherit version;
2018-11-22 17:01:48 +01:00
sha256 = "1nwylglh256mbwwnng6n6bzgxshyz18j12hw76sghbprp74hrc3w";
2018-02-25 17:49:36 +01:00
};
});
2018-07-10 11:24:24 +02:00
guessit = super.guessit.overridePythonAttrs (old: rec {
2018-11-22 17:01:48 +01:00
version = "3.0.3";
2018-07-10 11:24:24 +02:00
src = old.src.override {
inherit version;
2018-11-22 17:01:48 +01:00
sha256 = "1q06b3k31bfb8cxjimpf1rkcrwnc596a9cppjw15minvdangl32r";
2018-07-10 11:24:24 +02:00
};
});
2018-02-25 17:49:36 +01:00
};
in
with python'.pkgs;
2017-05-01 10:06:20 +02:00
buildPythonApplication rec {
2018-02-25 17:49:36 +01:00
pname = "FlexGet";
2018-11-22 17:01:48 +01:00
version = "2.17.14";
2018-02-25 17:49:36 +01:00
src = fetchPypi {
inherit pname version;
2018-11-22 17:01:48 +01:00
sha256 = "1wh12nspjzsgb0a7qp67s4k8wssbhhf500s8x8mx2smb1mgy4xzz";
};
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
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;
propagatedBuildInputs = [
2018-02-25 17:49:36 +01:00
feedparser sqlalchemy pyyaml
chardet beautifulsoup4 html5lib
PyRSS2Gen pynzb rpyc jinja2
jsonschema requests dateutil
2018-07-10 11:24:24 +02:00
pathpy guessit APScheduler
2017-01-04 09:34:16 +01:00
terminaltables colorclass
2018-02-25 17:49:36 +01:00
cherrypy flask flask-restful
flask-restplus flask-compress
flask_login flask-cors safe
pyparsing future zxcvbn-python
werkzeug tempora cheroot rebulk
portend transmissionrpc aniso8601
babelfish certifi click futures
idna itsdangerous markupsafe
plumbum pytz six tzlocal urllib3
webencodings werkzeug zxcvbn-python
2018-07-06 17:54:17 +02:00
backports_functools_lru_cache
] ++ lib.optional (pythonOlder "3.4") pathlib
2018-02-25 17:49:36 +01:00
++ lib.optional delugeSupport deluge;
2018-02-25 17:49:36 +01:00
meta = with lib; {
homepage = https://flexget.com/;
description = "Multipurpose automation tool for content like torrents";
2018-02-25 17:49:36 +01:00
license = licenses.mit;
2018-03-15 10:13:08 +01:00
maintainers = with maintainers; [ ];
};
2017-01-04 09:34:16 +01:00
}