Merge pull request #40399 from rvl/datadog-agent

DataDog Agent v6
This commit is contained in:
Samuel Leathers
2018-08-15 15:53:03 -04:00
committed by GitHub
10 changed files with 829 additions and 41 deletions

View File

@@ -0,0 +1,16 @@
{ lib, stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "uuid";
version = "1.30";
src = fetchPypi {
inherit pname version;
sha256 = "0gqrjsm85nnkxkmd1vk8350wqj2cigjflnvcydk084n5980cr1qz";
};
meta = with lib; {
description = "UUID object and generation functions (Python 2.3 or higher)";
homepage = http://zesty.ca/python/;
};
}