python313Packages.starlink-grpc-core: init at 1.2.3

This commit is contained in:
Jamie Magee
2025-07-06 16:11:31 -07:00
parent 0e80b47e2f
commit 3dc6001f94
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
setuptools-scm,
grpcio,
protobuf,
yagrc,
}:
buildPythonPackage rec {
pname = "starlink-grpc-core";
version = "1.2.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "sparky8512";
repo = "starlink-grpc-tools";
tag = "v${version}";
hash = "sha256-TXj8cU5abVIA81vEylYgZCIAUk31BppwRdHMl9kOEPQ=";
};
pypaBuildFlags = [ "packaging" ];
build-system = [
setuptools
setuptools-scm
];
dependencies = [
grpcio
protobuf
yagrc
];
# no tests
doCheck = false;
pythonImportsCheck = [ "starlink_grpc" ];
meta = {
description = "Core functions for Starlink gRPC communication";
homepage = "https://github.com/sparky8512/starlink-grpc-tools";
changelog = "https://github.com/sparky8512/starlink-grpc-tools/releases/tag/v${version}";
license = lib.licenses.unlicense;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -17116,6 +17116,8 @@ self: super: with self; {
starline = callPackage ../development/python-modules/starline { };
starlink-grpc-core = callPackage ../development/python-modules/starlink-grpc-core { };
stashy = callPackage ../development/python-modules/stashy { };
static3 = callPackage ../development/python-modules/static3 { };