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