mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
28 lines
634 B
Nix
28 lines
634 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "opencensus-context";
|
|
version = "0.1.3";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|