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

81 lines
2.8 KiB
Nix
Raw Normal View History

{ lib
2017-05-01 11:06:20 +03:00
, fetchFromGitHub
, python
, transmission
, deluge
, config
}:
2017-05-01 11:06:20 +03:00
with python.pkgs;
2017-05-01 11:06:20 +03:00
buildPythonApplication rec {
version = "2.10.82";
name = "FlexGet-${version}";
2017-05-01 11:06:20 +03:00
src = fetchFromGitHub {
owner = "Flexget";
repo = "Flexget";
rev = version;
sha256 = "15508ihswfjbkzhf1f0qhn2ar1aiibz2ggp5d6r33icy8xwhpv09";
};
2017-03-31 05:37:07 +03:00
doCheck = true;
# test_regexp requires that HOME exist, test_filesystem requires a
# unicode-capable filesystem (and setting LC_ALL doesn't work).
# setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
2017-05-01 11:06:20 +03:00
postPatch = ''
substituteInPlace requirements.txt \
--replace "chardet==3.0.3" "chardet" \
--replace "rebulk==0.8.2" "rebulk" \
--replace "cherrypy==10.2.2" "cherrypy" \
--replace "portend==1.8" "portend" \
--replace "sqlalchemy==1.1.10" "sqlalchemy" \
--replace "zxcvbn-python==4.4.15" "zxcvbn-python" \
--replace "flask-cors==3.0.2" "flask-cors" \
--replace "certifi==2017.4.17" "certifi" \
--replace "apscheduler==3.3.1" "apscheduler" \
--replace "path.py==10.3.1" "path.py" \
--replace "tempora==1.8" "tempora" \
--replace "cheroot==5.5.0" "cheroot" \
--replace "six==1.10.0" "six" \
--replace "aniso8601==1.2.1" "aniso8601"
2017-03-31 05:37:07 +03:00
'';
2017-05-01 11:06:20 +03:00
2017-01-04 11:34:16 +03:00
checkPhase = ''
2017-03-31 05:37:07 +03:00
export HOME=.
py.test --disable-pytest-warnings -k "not test_quality_failures \
and not test_group_quality \
and not crash_report \
and not test_multi_episode \
and not test_double_episodes \
and not test_inject_force \
and not test_double_prefered \
and not test_double \
and not test_non_ascii"
2017-01-04 11:34:16 +03:00
'';
2017-03-31 05:37:07 +03:00
buildInputs = [ pytest mock vcrpy pytest-catchlog boto3 ];
propagatedBuildInputs = [
feedparser sqlalchemy pyyaml chardet
2017-05-01 11:06:20 +03:00
beautifulsoup4 html5lib PyRSS2Gen pynzb
rpyc jinja2 jsonschema requests dateutil jsonschema
pathpy guessit_2_0 APScheduler
2017-01-04 11:34:16 +03:00
terminaltables colorclass
cherrypy flask flask-restful flask-restplus
2017-01-04 11:34:16 +03:00
flask-compress flask_login flask-cors
pyparsing safe future zxcvbn-python
werkzeug tempora cheroot rebulk portend
] ++ lib.optional (pythonOlder "3.4") pathlib
# enable deluge and transmission plugin support, if they're installed
++ lib.optional (config.deluge or false) deluge
++ lib.optional (transmission != null) transmissionrpc;
meta = {
homepage = https://flexget.com/;
description = "Multipurpose automation tool for content like torrents";
2016-12-31 12:09:16 +03:00
license = lib.licenses.mit;
2017-01-04 11:34:16 +03:00
maintainers = with lib.maintainers; [ domenkozar tari ];
2018-02-09 20:08:28 +03:00
broken = true; # as of 2018-02-09
};
2017-01-04 11:34:16 +03:00
}