504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
29 lines
655 B
Nix
29 lines
655 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, lib
|
|
, unittestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "opencensus-context";
|
|
version = "0.1.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-oDEIw8ENjIC7Xd9cih8DMWH6YZcqmRf5ubOhhRfwCIw=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|