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.
52 lines
931 B
Nix
52 lines
931 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, pythonOlder
|
|
, h2
|
|
, multidict
|
|
, pytestCheckHook
|
|
, pytest-asyncio
|
|
, async-timeout
|
|
, faker
|
|
, googleapis-common-protos
|
|
, certifi
|
|
}:
|
|
let
|
|
pname = "grpclib";
|
|
version = "0.4.3";
|
|
in
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vmagamedov";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-zjctvsuX5yJl1EXIAaiukWGYJbdgU7OZllgOYAmp1b4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
h2
|
|
multidict
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
async-timeout
|
|
faker
|
|
googleapis-common-protos
|
|
certifi
|
|
];
|
|
|
|
pythonImportsCheck = [ "grpclib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Pure-Python gRPC implementation for asyncio";
|
|
homepage = "https://github.com/vmagamedov/grpclib";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ nikstur ];
|
|
};
|
|
}
|