python3Packages.chess-com-api: init at 1.1.0

This commit is contained in:
Jamie Magee
2026-04-04 17:15:05 -07:00
parent 32cbbb03c7
commit 0d960fa17a
2 changed files with 53 additions and 0 deletions
@@ -0,0 +1,51 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
aiohttp,
pytestCheckHook,
pytest-asyncio,
pytest-cov-stub,
pytest-mock,
}:
buildPythonPackage (finalAttrs: {
pname = "chess-com-api";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Stupidoodle";
repo = "chess-com-api";
tag = "v${finalAttrs.version}";
hash = "sha256-/84rDQwD1Qxl1x7AOF6KFTYqYOdqQyzuhgiz5gArMmo=";
};
build-system = [ hatchling ];
dependencies = [ aiohttp ];
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
pytest-cov-stub
pytest-mock
];
disabledTestPaths = [
# require network access
"tests/test_client.py"
"tests/test_integration.py"
];
pythonImportsCheck = [ "chess_com_api" ];
meta = {
description = "An async Python wrapper for the Chess.com API";
homepage = "https://github.com/Stupidoodle/chess-com-api";
changelog = "https://github.com/Stupidoodle/chess-com-api/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
+2
View File
@@ -2689,6 +2689,8 @@ self: super: with self; {
chess = callPackage ../development/python-modules/chess { };
chess-com-api = callPackage ../development/python-modules/chess-com-api { };
chevron = callPackage ../development/python-modules/chevron { };
chex = callPackage ../development/python-modules/chex { };