Merge pull request #330881 from jokatzke/add-discum

python3Packages.discum: init at 1.4.1
This commit is contained in:
Florian 2024-08-06 07:08:19 +02:00 committed by GitHub
commit 36e179fb99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -3125,6 +3125,8 @@ self: super: with self; {
discovery30303 = callPackage ../development/python-modules/discovery30303 { };
discum = callPackage ../development/python-modules/discum { };
diskcache = callPackage ../development/python-modules/diskcache { };
dissect = callPackage ../development/python-modules/dissect { };