bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
57 lines
989 B
Nix
57 lines
989 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
flit,
|
|
uritemplate,
|
|
pyjwt,
|
|
pytestCheckHook,
|
|
aiohttp,
|
|
httpx,
|
|
importlib-resources,
|
|
pytest-asyncio,
|
|
pytest-tornasync,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gidgethub";
|
|
version = "5.3.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ns59N/vOuBm4BWDn7Vj5NuSKZdN+xfVtt5FFFWtCaiU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ flit ];
|
|
|
|
propagatedBuildInputs = [
|
|
uritemplate
|
|
pyjwt
|
|
] ++ pyjwt.optional-dependencies.crypto;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
aiohttp
|
|
httpx
|
|
importlib-resources
|
|
pytest-asyncio
|
|
pytest-tornasync
|
|
];
|
|
|
|
disabledTests = [
|
|
# Require internet connection
|
|
"test__request"
|
|
"test_get"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Async GitHub API library";
|
|
homepage = "https://github.com/brettcannon/gidgethub";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|