nixpkgs/pkgs/development/python-modules/hikari/default.nix
Sigmanificient 134faf38ac python313Packages.hikari: 2.4.1 -> 2.5.0
Co-Authored-by: SkohTV <contact@skoh.dev>
2026-01-14 01:21:16 +01:00

81 lines
1.8 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
hatchling,
aiohttp,
async-timeout,
attrs,
multidict,
colorlog,
pynacl,
pytest-cov-stub,
pytest-randomly,
pytest-asyncio,
mock,
}:
buildPythonPackage (finalAttrs: {
pname = "hikari";
version = "2.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "hikari-py";
repo = "hikari";
tag = finalAttrs.version;
hash = "sha256-dOYaGWxhLefWIhaaIPM80cpYtcB/ywibFBzWDr3hKsw=";
# The git commit is part of the `hikari.__git_sha1__` original output;
# leave that output the same in nixpkgs. Use the `.git` directory
# to retrieve the commit SHA, and remove the directory afterwards,
# since it is not needed after that.
leaveDotGit = true;
postFetch = ''
cd "$out"
git rev-parse HEAD > $out/COMMIT
find "$out" -name .git -print0 | xargs -0 rm -rf
'';
};
build-system = [ hatchling ];
propagatedBuildInputs = [
aiohttp
attrs
multidict
colorlog
];
pythonRelaxDeps = true;
optional-dependencies = {
server = [ pynacl ];
};
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
pytest-cov-stub
pytest-randomly
mock
async-timeout
];
pythonImportsCheck = [ "hikari" ];
postPatch = ''
substituteInPlace hikari/_about.py \
--replace-fail "__git_sha1__: typing.Final[str] = \"HEAD\"" "__git_sha1__: typing.Final[str] = \"$(cat $src/COMMIT)\""
'';
meta = {
description = "Discord API wrapper for Python written with asyncio";
homepage = "https://www.hikari-py.dev/";
changelog = "https://github.com/hikari-py/hikari/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
tomodachi94
sigmanificient
];
};
})