blob: cdbf6df4dd0f498bff6d3cb7cd4463ce0f1e9fd1 (
plain) (
blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "maigret";
version = "0.4.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "soxoj";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Z8SnA7Z5+oKW0AOaNf+c/zR30lrPFmXaxxKkbnDXNNs=";
};
patches = [
# https://github.com/soxoj/maigret/pull/1117
(fetchpatch {
name = "pytest-7.3-compatibility.patch";
url = "https://github.com/soxoj/maigret/commit/ecb33de9e6eec12b6b45a1152199177f32c85be2.patch";
hash = "sha256-nFx3j1Q37YLtYhb0QS34UgZFgAc5Z/RVgbO9o1n1ONE=";
})
];
propagatedBuildInputs = with python3.pkgs; [
aiodns
aiohttp
aiohttp-socks
arabic-reshaper
async-timeout
attrs
beautifulsoup4
certifi
chardet
cloudscraper
colorama
future
html5lib
idna
jinja2
lxml
markupsafe
mock
multidict
networkx
pycountry
pypdf2
pysocks
python-bidi
pyvis
requests
requests-futures
six
socid-extractor
soupsieve
stem
torrequest
tqdm
typing-extensions
webencodings
xhtml2pdf
xmind
yarl
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = with python3.pkgs; [
pytest-httpserver
pytest-asyncio
pytestCheckHook
];
pythonRelaxDeps = true;
pythonRemoveDeps = [ "future-annotations" ];
pytestFlagsArray = [
# DeprecationWarning: There is no current event loop
"-W ignore::DeprecationWarning"
];
disabledTests = [
# Tests require network access
"test_extract_ids_from_page"
"test_import_aiohttp_cookies"
"test_maigret_results"
"test_pdf_report"
"test_self_check_db_negative_enabled"
"test_self_check_db_positive_enable"
] ++ lib.optionals stdenv.isDarwin [
# AsyncioProgressbarExecutor is slower on darwin than it should be,
# Upstream issue: https://github.com/soxoj/maigret/issues/679
"test_asyncio_progressbar_executor"
];
pythonImportsCheck = [
"maigret"
];
meta = with lib; {
description = "Tool to collect details about an username";
homepage = "https://maigret.readthedocs.io";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|