python3Packages.envoy-data-plane: init at 1.0.3

This commit is contained in:
Gaetan Lepage
2026-02-01 23:19:53 +00:00
parent 25d1879a87
commit 9ba90339d8
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,50 @@
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
poetry-core,
# dependencies
betterproto,
grpcio-tools,
}:
buildPythonPackage (finalAttrs: {
pname = "envoy-data-plane";
version = "1.0.3";
pyproject = true;
# Version 2.0.0 appears to be an empty archive and apache-beam requires envoy-data-planes<2.0.0
# nixpkgs-update: no auto update
src = fetchPypi {
pname = "envoy_data_plane";
inherit (finalAttrs) version;
hash = "sha256-UkSrtENDXjEtvEJldgZ5UHHkxK3rOqV3mmifrLGo538=";
};
build-system = [
poetry-core
];
pythonRelaxDeps = [
"betterproto"
];
dependencies = [
betterproto
grpcio-tools
];
pythonImportsCheck = [ "envoy_data_plane" ];
# No tests
doCheck = false;
meta = {
description = "Python dataclasses for the Envoy Data-Plane-API";
homepage = "https://pypi.org/project/envoy_data_plane/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
})
+2
View File
@@ -4971,6 +4971,8 @@ self: super: with self; {
envisage = callPackage ../development/python-modules/envisage { };
envoy-data-plane = callPackage ../development/python-modules/envoy-data-plane { };
envoy-reader = callPackage ../development/python-modules/envoy-reader { };
envoy-utils = callPackage ../development/python-modules/envoy-utils { };