depot/third_party/nixpkgs/pkgs/development/python-modules/opencensus/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

39 lines
779 B
Nix

{ buildPythonPackage
, fetchPypi
, lib
, unittestCheckHook
, google-api-core
, opencensus-context
}:
buildPythonPackage rec {
pname = "opencensus";
version = "0.11.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-tS3WtAE8Ezpr6fD/LpBoxkAdMzKw7MX67z3WxCFm9vM=";
};
propagatedBuildInputs = [
google-api-core
opencensus-context
];
pythonNamespaces = [
"opencensus.common"
];
doCheck = false; # No tests in sdist
pythonImportsCheck = [
"opencensus.common"
];
meta = with lib; {
description = "A stats collection and distributed tracing framework";
homepage = "https://github.com/census-instrumentation/opencensus-python";
license = licenses.asl20;
maintainers = with maintainers; [ billhuang ];
};
}