evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / opencensus / default.nix
blobd7d4ac6ddc0c832a2e709a6ee2a1eb2c73f39406
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5   google-api-core,
6   opencensus-context,
7 }:
9 buildPythonPackage rec {
10   pname = "opencensus";
11   version = "0.11.4";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-y++H2Lh3MGSrYOXCoc7Vi7qjim0FLEGuwiSVjOVE7/I=";
17   };
19   propagatedBuildInputs = [
20     google-api-core
21     opencensus-context
22   ];
24   pythonNamespaces = [ "opencensus.common" ];
26   doCheck = false; # No tests in sdist
28   pythonImportsCheck = [ "opencensus.common" ];
30   meta = with lib; {
31     description = "Stats collection and distributed tracing framework";
32     homepage = "https://github.com/census-instrumentation/opencensus-python";
33     license = licenses.asl20;
34     maintainers = with maintainers; [ billhuang ];
35   };