File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- { stdenv , pythonPackages , fetchFromGitHub } :
1
+ { stdenv , python3Packages , fetchFromGitHub } :
2
2
3
- pythonPackages . buildPythonApplication rec {
3
+ python3Packages . buildPythonApplication rec {
4
4
pname = "ntfy" ;
5
5
version = "2.7.0" ;
6
6
@@ -11,11 +11,11 @@ pythonPackages.buildPythonApplication rec {
11
11
sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv" ;
12
12
} ;
13
13
14
- checkInputs = with pythonPackages ; [
14
+ checkInputs = with python3Packages ; [
15
15
mock
16
16
] ;
17
17
18
- propagatedBuildInputs = with pythonPackages ; [
18
+ propagatedBuildInputs = with python3Packages ; [
19
19
requests ruamel_yaml appdirs
20
20
sleekxmpp dns
21
21
emoji
@@ -25,7 +25,7 @@ pythonPackages.buildPythonApplication rec {
25
25
] ;
26
26
27
27
checkPhase = ''
28
- HOME=$(mktemp -d) ${ pythonPackages . python . interpreter } setup.py test
28
+ HOME=$(mktemp -d) ${ python3Packages . python . interpreter } setup.py test
29
29
'' ;
30
30
31
31
meta = with stdenv . lib ; {
You can’t perform that action at this time.
0 commit comments