mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
55 lines
957 B
Nix
55 lines
957 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, uritemplate
|
|
, pyjwt
|
|
, pytestCheckHook
|
|
, aiohttp
|
|
, httpx
|
|
, importlib-resources
|
|
, pytest-asyncio
|
|
, pytest-tornasync
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gidgethub";
|
|
version = "5.2.1";
|
|
format = "flit";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-pTP4WleVUmFDPCUHAUdjBMw3QDfAq2aw5TcrSEZ0nVw=";
|
|
};
|
|
|
|
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 = "An async GitHub API library";
|
|
homepage = "https://github.com/brettcannon/gidgethub";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|