Merge pull request #98140 from nh2/ntfy-python3

ntfy: Switch to python3. Also fixes test failure
This commit is contained in:
Niklas Hambüchen 2020-09-17 16:12:03 +02:00 committed by GitHub
commit 3c6ed1a798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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; {