mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #116494 from marsam/update-flexget
This commit is contained in:
commit
bded56b981
2 changed files with 13 additions and 4 deletions
|
@ -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 = ''
|
||||
|
|
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue