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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pythonRelaxDepsHook,
brotli,
colorama,
filetype,
requests,
requests-toolbelt,
ua-parser,
websocket-client,
pycryptodome,
pypng,
pyqrcode,
}:
buildPythonPackage rec {
pname = "discum";
version = "1.4.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-/8TaAmfSPv/7kuymockSvC2uxXgHfuP+FXN8vuA9WHY=";
};
build-system = [ setuptools ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
brotli
colorama
filetype
requests
requests-toolbelt
ua-parser
websocket-client
];
passthru.optional-dependencies = {
ra = [
pycryptodome
pypng
pyqrcode
];
};
pythonImportsCheck = [ "discum" ];
pythonRelaxDeps = [ "websocket-client" ];
meta = {
description = "Discord API Wrapper for Userbots/Selfbots written in Python";
homepage = "https://pypi.org/project/discum/";
changelog = "https://github.com/Merubokkusu/Discord-S.C.U.M/blob/v${version}/changelog.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jokatzke ];
};
}
|