Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / opencensus-context / default.nix
blob0379b27519eaf5ac02925b8fa6be06fd6a9ba067
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , unittestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "opencensus-context";
9   version = "0.1.3";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-oDEIw8ENjIC7Xd9cih8DMWH6YZcqmRf5ubOhhRfwCIw=";
14   };
16   pythonNamespaces = [
17     "opencensus.common"
18   ];
20   doCheck = false; # No tests in archive
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   };