summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-09-17 03:17:49 +0200
committerNiklas Hambüchen <mail@nh2.me>2020-09-17 03:17:49 +0200
commit35593698d5dd49117d9d082174add68389f96e08 (patch)
tree014af8cbbc016df6e7d53128e15939f8804e0e3c /pkgs/tools/misc
parentcbe0b2e2c5194ee2f729126e73d807fc337377c1 (diff)
ntfy: Switch to python3. Also fixes test failure.
Fixes test error: AttributeError: 'module' object has no attribute 'test_prowl'
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/ntfy/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/ntfy/default.nix b/pkgs/tools/misc/ntfy/default.nix
index a3cf6ad07d5b..593a8cfc637d 100644
--- a/pkgs/tools/misc/ntfy/default.nix
+++ b/pkgs/tools/misc/ntfy/default.nix
@@ -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; {