5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
click,
|
|
fetchPypi,
|
|
freezegun,
|
|
hatchling,
|
|
mock,
|
|
pytest-vcr,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
pythonOlder,
|
|
requests,
|
|
vcrpy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "datadog";
|
|
version = "0.49.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-TLenmRr2ytuGj+RQzUVkc+ZfEfxni3189hBE/xxgdNg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
click
|
|
freezegun
|
|
mock
|
|
pytestCheckHook
|
|
pytest-vcr
|
|
python-dateutil
|
|
vcrpy
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/performance"
|
|
# https://github.com/DataDog/datadogpy/issues/800
|
|
"tests/integration/api/test_*.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_default_settings_set"
|
|
# https://github.com/DataDog/datadogpy/issues/746
|
|
"TestDogshell"
|
|
];
|
|
|
|
pythonImportsCheck = [ "datadog" ];
|
|
|
|
meta = with lib; {
|
|
description = "Datadog Python library";
|
|
homepage = "https://github.com/DataDog/datadogpy";
|
|
changelog = "https://github.com/DataDog/datadogpy/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|