7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
67 lines
1.4 KiB
Nix
67 lines
1.4 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
glean-parser,
|
|
pytest-localserver,
|
|
pytestCheckHook,
|
|
rustPlatform,
|
|
semver,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "glean-sdk";
|
|
version = "60.4.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mozilla";
|
|
repo = "glean";
|
|
rev = "v${version}";
|
|
hash = "sha256-C3wQdxPNBPQN6eUK6Vq0bA6Wpqb28e9BTBf7c/hTQxU=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-XqOCHnvM64kZNifU5Wt/bFAvyRVy28ozWSwlvm/sMk8=";
|
|
};
|
|
|
|
build-system = [
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
glean-parser
|
|
semver
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-localserver
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [ "glean-core/python/tests" ];
|
|
|
|
disabledTests = [
|
|
# RuntimeError: No ping received.
|
|
"test_client_activity_api"
|
|
"test_flipping_upload_enabled_respects_order_of_events"
|
|
# A warning causes this test to fail
|
|
"test_get_language_tag_reports_the_tag_for_the_default_locale"
|
|
];
|
|
|
|
pythonImportsCheck = [ "glean" ];
|
|
|
|
meta = {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Telemetry client libraries and are a part of the Glean project";
|
|
homepage = "https://mozilla.github.io/glean/book/index.html";
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ melling ];
|
|
};
|
|
}
|