Files
nixpkgs/pkgs/development/python-modules/datadog/default.nix
T
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

68 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
click,
fetchPypi,
freezegun,
hatchling,
mock,
pytest-vcr,
pytestCheckHook,
python-dateutil,
pythonAtLeast,
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 = with maintainers; [ ];
};
}