We finally managed to run the ml_client.py

This commit is contained in:
Lillian Violet 2024-09-04 12:27:59 +02:00
parent ff8c7d4188
commit 8786f26e1e
6 changed files with 339 additions and 4 deletions

View file

@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
scipy,
matplotlib,
python311,
}:
buildPythonPackage rec {
pname = "opencensus_ext_logging";
version = "0.1.1";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "sha256-z9r12l2LGV/z0a+HpAZqZiGigEYXP2vksLbK7Eo8qJ8=";
dist = "py2.py3";
python = "py2.py3";
};
nativeBuildInputs = [setuptools wheel];
propagatedBuildInputs = [
];
doCheck = false; # Package does not contain tests
meta = with lib; {
description = "A stats collection and distributed tracing framework ";
homepage = "https://github.com/census-instrumentation/opencensus-python";
license = licenses.mit;
maintainers = with maintainers; [Lillian-Violet];
};
}