blob: 9a070eaff25cabc5087469dfad4da3c5ce8cbac9 (
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,
fetchFromGitHub,
requests,
httpx,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "telegraph";
version = "2.2.0";
format = "setuptools";
src = fetchFromGitHub {
repo = "telegraph";
owner = "python273";
tag = "v${version}";
hash = "sha256-xARX8lSOftNVYY4InR5vU4OiguCJJJZv/W76G9eLgNY=";
};
propagatedBuildInputs = [ requests ];
optional-dependencies = {
aio = [ httpx ];
};
nativeCheckInputs = [ pytestCheckHook ];
enabledTestPaths = [ "tests/" ];
disabledTests = [ "test_get_page" ];
pythonImportsCheck = [ "telegraph" ];
meta = {
description = "Telegraph API wrapper";
homepage = "https://github.com/python273/telegraph";
changelog = "https://github.com/python273/telegraph/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gp2112 ];
};
}
|