ntfy: Switch to python3. Also fixes test failure.

Fixes test error:

    AttributeError: 'module' object has no attribute 'test_prowl'
This commit is contained in:
Niklas Hambüchen 2020-09-17 03:17:49 +02:00
parent cbe0b2e2c5
commit 35593698d5

View file

@ -1,6 +1,6 @@
{ stdenv, pythonPackages, fetchFromGitHub }:
{ stdenv, python3Packages, fetchFromGitHub }:
pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "ntfy";
version = "2.7.0";
@ -11,11 +11,11 @@ pythonPackages.buildPythonApplication rec {
sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv";
};
checkInputs = with pythonPackages; [
checkInputs = with python3Packages; [
mock
];
propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = with python3Packages; [
requests ruamel_yaml appdirs
sleekxmpp dns
emoji
@ -25,7 +25,7 @@ pythonPackages.buildPythonApplication rec {
];
checkPhase = ''
HOME=$(mktemp -d) ${pythonPackages.python.interpreter} setup.py test
HOME=$(mktemp -d) ${python3Packages.python.interpreter} setup.py test
'';
meta = with stdenv.lib; {