diff --git a/pkgs/development/python-modules/aiogithubapi/default.nix b/pkgs/development/python-modules/aiogithubapi/default.nix index 7ff1bd6b6722..5f4a3c28d154 100644 --- a/pkgs/development/python-modules/aiogithubapi/default.nix +++ b/pkgs/development/python-modules/aiogithubapi/default.nix @@ -51,27 +51,24 @@ buildPythonPackage rec { aresponses pytest-asyncio pytestCheckHook - sigstore ]; pytestFlagsArray = [ "--asyncio-mode=auto" ]; preCheck = '' export HOME=$(mktemp -d) + + # Need sigstore is an optional dependencies and need <2 + rm -rf tests/test_helper.py ''; pythonImportsCheck = [ "aiogithubapi" ]; - disabledTests = [ - # sigstore.errors.TUFError: Failed to refresh TUF metadata - "test_sigstore" - ]; - - meta = with lib; { + meta = { description = "Python client for the GitHub API"; homepage = "https://github.com/ludeeus/aiogithubapi"; changelog = "https://github.com/ludeeus/aiogithubapi/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; }