about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/opencensus-context/default.nix
blob: 0379b27519eaf5ac02925b8fa6be06fd6a9ba067 (plain) (blame)
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
{ buildPythonPackage
, fetchPypi
, lib
, unittestCheckHook
}:

buildPythonPackage rec {
  pname = "opencensus-context";
  version = "0.1.3";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-oDEIw8ENjIC7Xd9cih8DMWH6YZcqmRf5ubOhhRfwCIw=";
  };

  pythonNamespaces = [
    "opencensus.common"
  ];

  doCheck = false; # No tests in archive

  meta = with lib; {
    description = "OpenCensus Runtime Context";
    homepage = "https://github.com/census-instrumentation/opencensus-python/tree/master/context/opencensus-context";
    license = licenses.asl20;
    maintainers = with maintainers; [ billhuang ];
  };
}