tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.pushover-complete: enable tests
Sandro Jäckel
3 years ago
fd019e44
e4d99ffc
+9
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pushover-complete
default.nix
+9
-6
pkgs/development/python-modules/pushover-complete/default.nix
···
4
, isPy27
5
, requests
6
, six
7
-
, tox
8
-
, pytest
9
, pythonOlder
0
0
10
}:
11
12
buildPythonPackage rec {
···
25
six
26
];
27
28
-
checkInputs = [ pytest tox ];
0
0
0
0
29
30
-
# Fails also on their travis right now:
31
-
# - https://travis-ci.org/scolby33/pushover_complete/builds?utm_medium=notification&utm_source=github_status
32
-
doCheck = pythonOlder "3.7";
33
34
meta = with lib; {
35
description = "A Python package for interacting with *all* aspects of the Pushover API";
···
4
, isPy27
5
, requests
6
, six
7
+
, pytestCheckHook
0
8
, pythonOlder
9
+
, requests-toolbelt
10
+
, responses
11
}:
12
13
buildPythonPackage rec {
···
26
six
27
];
28
29
+
checkInputs = [
30
+
pytestCheckHook
31
+
requests-toolbelt
32
+
responses
33
+
];
34
35
+
pythonImportsCheck = [ "pushover_complete" ];
0
0
36
37
meta = with lib; {
38
description = "A Python package for interacting with *all* aspects of the Pushover API";