1{
2 lib,
3 attrs,
4 buildPythonPackage,
5 deprecated,
6 fetchPypi,
7 httpx,
8 pytestCheckHook,
9 python-dateutil,
10 setuptools,
11 types-deprecated,
12 types-python-dateutil,
13}:
14
15buildPythonPackage rec {
16 pname = "standardwebhooks";
17 version = "1.0.0";
18 pyproject = true;
19
20 src = fetchPypi {
21 inherit pname version;
22 hash = "sha256-2UuZwNzqhBVuA62tlPjboy1UVMxo4S7CyCQFG1W7Z/8=";
23 };
24
25 build-system = [ setuptools ];
26
27 dependencies = [
28 attrs
29 deprecated
30 httpx
31 python-dateutil
32 types-deprecated
33 types-python-dateutil
34 ];
35
36 nativeCheckInputs = [ pytestCheckHook ];
37
38 pythonImportsCheck = [ "standardwebhooks" ];
39
40 meta = {
41 description = "Standard Webhooks";
42 homepage = "https://pypi.org/project/standardwebhooks/";
43 license = lib.licenses.mit;
44 maintainers = with lib.maintainers; [ fab ];
45 };
46}