1{ buildPythonPackage
2, fetchPypi
3, lib
4, unittestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "opencensus-context";
9 version = "0.1.3";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-oDEIw8ENjIC7Xd9cih8DMWH6YZcqmRf5ubOhhRfwCIw=";
14 };
15
16 pythonNamespaces = [
17 "opencensus.common"
18 ];
19
20 doCheck = false; # No tests in archive
21
22 meta = with lib; {
23 description = "OpenCensus Runtime Context";
24 homepage = "https://github.com/census-instrumentation/opencensus-python/tree/master/context/opencensus-context";
25 license = licenses.asl20;
26 maintainers = with maintainers; [ billhuang ];
27 };
28}