Merge pull request #316323 from Sigmanificient/hikari-crescent

This commit is contained in:
Sandro
2024-07-10 16:32:36 +02:00
committed by GitHub
3 changed files with 104 additions and 0 deletions
@@ -0,0 +1,59 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
hikari,
sigparse,
pytestCheckHook,
python-dotenv,
pytest-asyncio,
croniter,
pynacl
}:
buildPythonPackage rec {
pname = "hikari-crescent";
version = "0.6.6";
pyproject = true;
src = fetchFromGitHub {
owner = "hikari-crescent";
repo = "hikari-crescent";
rev = "refs/tags/v${version}";
hash = "sha256-PZAmz7Wofg6jnF25p/8leJQ9PeZaE3q5q2GUJG7NEB0=";
};
build-system = [ poetry-core ];
dependencies = [
hikari
sigparse
];
postPatch = ''
# pythonRelaxDepsHook did not work
substituteInPlace pyproject.toml \
--replace-fail 'hikari = "==' 'hikari = ">='
'';
pythonImportsCheck = [ "crescent" ];
nativeCheckInputs = [
pytestCheckHook
python-dotenv
pytest-asyncio
croniter
pynacl
];
disabledTests = [ "test_handle_resp" ];
meta = with lib; {
description = "A command handler for Hikari that keeps your project neat and tidy";
license = licenses.mit;
homepage = "https://github.com/hikari-crescent/hikari-crescent";
maintainers = with maintainers; [ sigmanificient ];
mainProgram = "hikari-crescent";
};
}
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
fetchpatch
}:
buildPythonPackage rec {
pname = "sigparse";
version = "3.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Lunarmagpie";
repo = "sigparse";
rev = "refs/tags/v${version}";
hash = "sha256-VzWDqplYgwrJXXd5IUzEIp0YRuofybqmGrNKPaGqQFM=";
};
patches = [
# pyproject.toml version file is set as 1.0.0
(fetchpatch {
url = "https://github.com/Lunarmagpie/sigparse/pull/14/commits/44780382410bc6913bdd8ff7e92948078adb736c.patch";
hash = "sha256-3EOkdBQDBodMBp4ENdvquJlRvAAywQhdWAX4dWFmhL0=";
})
];
build-system = [ poetry-core ];
pythonImportsCheck = [ "sigparse" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Backports python 3.10 typing features into 3.7, 3.8, and 3.9";
license = licenses.mit;
homepage = "https://github.com/Lunarmagpie/sigparse";
maintainers = with maintainers; [ sigmanificient ];
};
}
+4
View File
@@ -5478,6 +5478,8 @@ self: super: with self; {
hikari = callPackage ../development/python-modules/hikari { };
hikari-crescent = callPackage ../development/python-modules/hikari-crescent { };
hikari-lightbulb = callPackage ../development/python-modules/hikari-lightbulb { };
hikvision = callPackage ../development/python-modules/hikvision { };
@@ -14078,6 +14080,8 @@ self: super: with self; {
signxml = callPackage ../development/python-modules/signxml { };
sigparse = callPackage ../development/python-modules/sigparse { };
sigrok = callPackage ../development/python-modules/sigrok { };
sigstore = callPackage ../development/python-modules/sigstore { };