2023-01-20 10:41:00 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, lib
|
|
|
|
, unittestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "opencensus-context";
|
|
|
|
version = "0.1.3";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2023-01-20 10:41:00 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-oDEIw8ENjIC7Xd9cih8DMWH6YZcqmRf5ubOhhRfwCIw=";
|
2023-01-20 10:41:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
pythonNamespaces = [
|
|
|
|
"opencensus.common"
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false; # No tests in archive
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "OpenCensus Runtime Context";
|
|
|
|
homepage = "https://github.com/census-instrumentation/opencensus-python/tree/master/context/opencensus-context";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ billhuang ];
|
|
|
|
};
|
|
|
|
}
|