nixpkgs/pkgs/development/python-modules/applicationinsights/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

26 lines
592 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 = {
description = "This project extends the Application Insights API surface to support Python";
homepage = "https://github.com/Microsoft/ApplicationInsights-Python";
license = lib.licenses.mit;
maintainers = [ ];
};
}