17 buildPythonPackage rec {
21 format = "setuptools";
23 disabled = pythonOlder "3.8";
25 src = fetchFromGitHub {
28 rev = "refs/tags/v${version}";
29 hash = "sha256-bv4I+Ol/N4kbp/Ch7utaUpo0GmF+Mpx4zWmHL7uIveM=";
35 ffmpeg = "${ffmpeg}/bin/ffmpeg";
36 libopus = "${libopus}/lib/libopus${stdenv.hostPlatform.extensions.sharedLibrary}";
40 propagatedBuildInputs = [
49 # upstream has no tests
52 pythonImportsCheck = [
54 "nextcord.ext.commands"
59 changelog = "https://github.com/nextcord/nextcord/blob/${src.rev}/docs/whats_new.rst";
60 description = "Python wrapper for the Discord API forked from discord.py";
61 homepage = "https://github.com/nextcord/nextcord";
62 license = licenses.mit;
63 maintainers = with maintainers; [ dotlambda ];