mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
python3Packages.grpcio-status: init at 1.42.0
This commit is contained in:
parent
904bb80628
commit
9a0cdde9ab
42
pkgs/development/python-modules/grpcio-status/default.nix
Normal file
42
pkgs/development/python-modules/grpcio-status/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, googleapis-common-protos
|
||||
, grpc
|
||||
, grpcio
|
||||
, protobuf
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "grpcio-status";
|
||||
inherit (grpc) version;
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "JVM8TWXX1ROmOPDEuIsrZnAOO/Q+aZWlWjvRXsC3eQI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
googleapis-common-protos
|
||||
grpcio
|
||||
protobuf
|
||||
];
|
||||
|
||||
# Projec thas no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"grpc_status"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "GRPC Python status proto mapping";
|
||||
homepage = "https://github.com/grpc/grpc/tree/master/src/python/grpcio_status";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -3398,6 +3398,8 @@ in {
|
||||
|
||||
grpcio-gcp = callPackage ../development/python-modules/grpcio-gcp { };
|
||||
|
||||
grpcio-status = callPackage ../development/python-modules/grpcio-status { };
|
||||
|
||||
grpcio-tools = callPackage ../development/python-modules/grpcio-tools { };
|
||||
|
||||
gruut = callPackage ../development/python-modules/gruut { };
|
||||
|
Loading…
Reference in New Issue
Block a user