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