blob: 889fd1dc7548f434dfb1d6a45c2565b997f31fd9 (
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
44
45
46
|
{
lib,
attrs,
buildPythonPackage,
deprecated,
fetchPypi,
httpx,
pytestCheckHook,
python-dateutil,
setuptools,
types-deprecated,
types-python-dateutil,
}:
buildPythonPackage rec {
pname = "standardwebhooks";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-2UuZwNzqhBVuA62tlPjboy1UVMxo4S7CyCQFG1W7Z/8=";
};
build-system = [ setuptools ];
dependencies = [
attrs
deprecated
httpx
python-dateutil
types-deprecated
types-python-dateutil
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "standardwebhooks" ];
meta = {
description = "Standard Webhooks";
homepage = "https://pypi.org/project/standardwebhooks/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|