Merge pull request #203390 from SuperSandro2000/changedetection-io

python310Packages.apprise: 1.1.0 -> 1.2.0; changedetection-io: 0.39.21.1 -> 0.39.22.1
This commit is contained in:
Mario Rodas 2022-11-30 06:43:10 -05:00 committed by GitHub
commit 5b6e95b131
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 26 deletions

View file

@ -7,30 +7,29 @@
, gntp , gntp
, installShellFiles , installShellFiles
, markdown , markdown
, mock
, paho-mqtt , paho-mqtt
, pytest-mock
, pytest-xdist
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, pyyaml , pyyaml
, requests , requests
, requests-oauthlib , requests-oauthlib
, slixmpp
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "apprise"; pname = "apprise";
version = "1.1.0"; version = "1.2.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-92eoBwp3fcKb9zCBeeC2ndLeZeZpM+2JsZmef/5yO2A="; hash = "sha256-bjGvoY9HRS6szVb7fug9kkUsU00V85JAftGg48RlJEs=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
babel
installShellFiles installShellFiles
]; ];
@ -44,11 +43,12 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
babel
gntp gntp
mock
paho-mqtt paho-mqtt
pytest-mock
pytest-xdist
pytestCheckHook pytestCheckHook
slixmpp
]; ];
disabledTests = [ disabledTests = [

View file

@ -31,14 +31,14 @@ let
in in
py.pkgs.buildPythonApplication rec { py.pkgs.buildPythonApplication rec {
pname = "changedetection-io"; pname = "changedetection-io";
version = "0.39.21.1"; version = "0.39.22.1";
format = "setuptools"; format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dgtlmoon"; owner = "dgtlmoon";
repo = "changedetection.io"; repo = "changedetection.io";
rev = version; rev = version;
sha256 = "sha256-cX2HwlsWOJ34msEnPP38jq+kzSxOM/spe0Ja2lZ/Q7w="; sha256 = "sha256-qK44m64/skmeoBgHToTyOpeWUF2kgks10OHoAoLim+k=";
}; };
postPatch = '' postPatch = ''
@ -49,33 +49,35 @@ py.pkgs.buildPythonApplication rec {
''; '';
propagatedBuildInputs = with py.pkgs; [ propagatedBuildInputs = with py.pkgs; [
flask apprise
flask-wtf beautifulsoup4
brotli
chardet
cryptography
eventlet eventlet
validators
timeago
inscriptis
feedgen feedgen
flask
flask-login flask-login
flask-restful flask-restful
flask-wtf
inscriptis
jinja2 jinja2
jinja2-time jinja2-time
pytz
brotli
requests
urllib3
chardet
wtforms
jsonpath-ng jsonpath-ng
jq jq
apprise
paho-mqtt
cryptography
beautifulsoup4
lxml lxml
selenium paho-mqtt
werkzeug pillow
playwright playwright
pytz
requests
selenium
setuptools
timeago
urllib3
validators
werkzeug
wtforms
] ++ requests.optional-dependencies.socks; ] ++ requests.optional-dependencies.socks;
# tests can currently not be run in one pytest invocation and without docker # tests can currently not be run in one pytest invocation and without docker