mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
68 lines
1.1 KiB
Nix
68 lines
1.1 KiB
Nix
{ lib
|
|
, appdirs
|
|
, buildPythonPackage
|
|
, click
|
|
, diskcache
|
|
, fetchPypi
|
|
, jinja2
|
|
, jsonschema
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
, setuptools-scm
|
|
, yamllint
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "glean-parser";
|
|
version = "5.1.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
pname = "glean_parser";
|
|
inherit version;
|
|
hash = "sha256-PjOMNUnrz0kDfYEXv5Ni/9RIHn4Yylle6NJOK1Rb3SY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
click
|
|
diskcache
|
|
jinja2
|
|
jsonschema
|
|
pyyaml
|
|
yamllint
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pytest-runner" ""
|
|
'';
|
|
|
|
disabledTests = [
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1741668
|
|
"test_validate_ping"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"glean_parser"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tools for parsing the metadata for Mozilla's glean telemetry SDK";
|
|
homepage = "https://github.com/mozilla/glean_parser";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ kvark ];
|
|
};
|
|
}
|