python313Packages.publicsuffixlist: 1.0.2.20250122 -> 1.0.2.20250124 (#376319)
[NixPkgs.git] / pkgs / development / python-modules / azure-applicationinsights / default.nix
blob27e6275ab54206b8e6cebdc887b83a3c8a59eb13
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   azure-common,
6   msrest,
7 }:
9 buildPythonPackage rec {
10   pname = "azure-applicationinsights";
11   version = "0.1.1";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     extension = "zip";
17     hash = "sha256-qIRbgDZbfyALrR9xqA0NMfO+wB7f1GfftsE+or1xupY=";
18   };
20   propagatedBuildInputs = [
21     azure-common
22     msrest
23   ];
25   # has no tests
26   doCheck = false;
28   meta = with lib; {
29     description = "This is the Microsoft Azure Application Insights Client Library";
30     homepage = "https://github.com/Azure/azure-sdk-for-python";
31     license = licenses.mit;
32     maintainers = with maintainers; [ maxwilson ];
33   };