python313Packages.nyt-games: init at 0.4.4

This commit is contained in:
Robert Schütz
2025-02-02 18:48:46 -08:00
parent c6e957d81b
commit 21c272a980
2 changed files with 57 additions and 0 deletions
@@ -0,0 +1,55 @@
{
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
lib,
mashumaro,
orjson,
poetry-core,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
syrupy,
yarl,
}:
buildPythonPackage rec {
pname = "nyt-games";
version = "0.4.4";
pyproject = true;
src = fetchFromGitHub {
owner = "joostlek";
repo = "python-nyt-games";
tag = "v${version}";
hash = "sha256-eMJ96E4sGmekr6mOR30UIZBclH/0xc8AWv3zL1ItKjo=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
mashumaro
orjson
yarl
];
pythonImportsCheck = [ "nyt_games" ];
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytest-cov-stub
pytestCheckHook
syrupy
];
meta = {
changelog = "https://github.com/joostlek/python-nyt-games/releases/tag/${src.tag}";
description = "Asynchronous Python client for NYT games";
homepage = "https://github.com/joostlek/python-nyt-games";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -9499,6 +9499,8 @@ self: super: with self; {
nxt-python = callPackage ../development/python-modules/nxt-python { };
nyt-games = callPackage ../development/python-modules/nyt-games { };
plugp100 = callPackage ../development/python-modules/plugp100 {};
python-bugzilla = callPackage ../development/python-modules/python-bugzilla { };