blob: 269b89733742d4e97c1700aefc4e8897e581c30a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
buildPythonPackage,
fetchPypi,
lib,
google-api-core,
opencensus-context,
}:
buildPythonPackage rec {
pname = "opencensus";
version = "0.11.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-y++H2Lh3MGSrYOXCoc7Vi7qjim0FLEGuwiSVjOVE7/I=";
};
propagatedBuildInputs = [
google-api-core
opencensus-context
];
pythonNamespaces = [ "opencensus.common" ];
doCheck = false; # No tests in sdist
pythonImportsCheck = [ "opencensus.common" ];
meta = {
description = "Stats collection and distributed tracing framework";
homepage = "https://github.com/census-instrumentation/opencensus-python";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ billhuang ];
};
}
|