python3Packages.glean-sdk: init at 42.2.0

Needed for moz-phab.
This commit is contained in:
Dzmitry Malyshau
2021-11-19 10:44:00 -05:00
parent 313f74cd73
commit a811dea815
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,42 @@
{ lib
, pkgs
, python3Packages
, rustPlatform
, setuptools-rust
}:
python3Packages.buildPythonPackage rec {
pname = "glean-sdk";
version = "42.2.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-X2p6KQnEB6ZHdCHGFVEoEMiI+0R2vfGqel+jFKTcx74=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
sha256 = "sha256-/+rKGPYTLovgjTGL2F/pWzlUy1tY207yuJz3Xdhm1hg=";
};
nativeBuildInputs = [
pkgs.rustc
pkgs.cargo
setuptools-rust
rustPlatform.cargoSetupHook
];
propagatedBuildInputs = with python3Packages; [
cffi
glean-parser
];
pythonImportsCheck = [ "glean" ];
meta = with lib; {
description = "Modern cross-platform telemetry client libraries and are a part of the Glean project";
homepage = "https://mozilla.github.io/glean/book/index.html";
license = licenses.mpl20;
maintainers = [ maintainers.kvark ];
};
}