Merge pull request #116494 from marsam/update-flexget

This commit is contained in:
Sandro 2021-03-16 12:37:42 +01:00 committed by GitHub
commit bded56b981
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 4 deletions

View file

@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec {
pname = "FlexGet";
version = "3.1.103";
version = "3.1.106";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "da635a01ae7d15ba31b41081ab3e0214b8c5ab5e4662c381246495d7d1eba9be";
sha256 = "f0ff300a1762d701b77eb16142dcc13d9d099bbed695f1e950392c1d1bb988eb";
};
postPatch = ''

View file

@ -1,8 +1,11 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, setuptools-scm
, pytestCheckHook
, pytest-asyncio
, pytest-tornado
, pytestcov
, sqlalchemy
, tornado
@ -33,15 +36,16 @@ buildPythonPackage rec {
];
checkInputs = [
pytest-asyncio
pytest-tornado
pytestCheckHook
pytestcov
sqlalchemy
tornado
twisted
mock
trollius
gevent
];
] ++ lib.optionals (!isPy3k) [ trollius ];
propagatedBuildInputs = [
six
@ -51,6 +55,11 @@ buildPythonPackage rec {
setuptools
] ++ lib.optional (!isPy3k) futures;
disabledTests = lib.optionals stdenv.isDarwin [
"test_submit_job"
"test_max_instances"
];
pythonImportsCheck = [ "apscheduler" ];
meta = with lib; {