Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5 unittestCheckHook, 6}: 7 8buildPythonPackage rec { 9 pname = "opencensus-context"; 10 version = "0.1.3"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-oDEIw8ENjIC7Xd9cih8DMWH6YZcqmRf5ubOhhRfwCIw="; 16 }; 17 18 pythonNamespaces = [ "opencensus.common" ]; 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}