1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 requests,
7 six,
8 pytestCheckHook,
9 requests-toolbelt,
10 responses,
11}:
12
13buildPythonPackage rec {
14 pname = "pushover-complete";
15 version = "1.2.0";
16 pyproject = true;
17
18 src = fetchPypi {
19 pname = "pushover_complete";
20 inherit version;
21 hash = "sha256-v0+JgShJMEdVXJ1xZD4UCKZzgV+uOuOstPn3nWtHDJw=";
22 };
23
24 build-system = [ setuptools ];
25
26 dependencies = [
27 requests
28 six
29 ];
30
31 nativeCheckInputs = [
32 pytestCheckHook
33 requests-toolbelt
34 responses
35 ];
36
37 pythonImportsCheck = [ "pushover_complete" ];
38
39 meta = with lib; {
40 description = "Python package for interacting with *all* aspects of the Pushover API";
41 homepage = "https://github.com/scolby33/pushover_complete";
42 license = licenses.mit;
43 maintainers = [ maintainers.mic92 ];
44 };
45}