Improve Darwin support

This commit is contained in:
greg-compass
2022-09-09 13:30:12 -05:00
parent d0a233fed7
commit 290914bf59
9 changed files with 67 additions and 9 deletions
+20
View File
@@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi, pkgs}:
buildPythonPackage rec {
pname = "datadog-api-client";
version = "2.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "";
};
meta = with lib; {
description = "Datadog API client support";
homepage = "https://github.com/DataDog/datadog-api-client-python";
license = licenses.bsd;
maintainers = [];
};
doCheck = false;
}