depot/third_party/nixpkgs/pkgs/development/python-modules/applicationinsights/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

25 lines
620 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
, portalocker
}:
buildPythonPackage rec {
version = "0.11.10";
format = "setuptools";
pname = "applicationinsights";
src = fetchPypi {
inherit pname version;
sha256 = "0b761f3ef0680acf4731906dfc1807faa6f2a57168ae74592db0084a6099f7b3";
};
propagatedBuildInputs = [ portalocker ];
meta = with lib; {
description = "This project extends the Application Insights API surface to support Python";
homepage = "https://github.com/Microsoft/ApplicationInsights-Python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}