ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-applicationinsights / default.nix
blobf3f395b6f78e23b3925e9dd2ad4c8ae9866fef52
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-common
5 , msrest
6 }:
8 buildPythonPackage rec {
9   pname = "azure-applicationinsights";
10   version = "0.1.1";
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "sha256-qIRbgDZbfyALrR9xqA0NMfO+wB7f1GfftsE+or1xupY=";
16   };
18   propagatedBuildInputs = [
19     azure-common
20     msrest
21   ];
23   # has no tests
24   doCheck = false;
26   meta = with lib; {
27     description = "This is the Microsoft Azure Application Insights Client Library";
28     homepage = "https://github.com/Azure/azure-sdk-for-python";
29     license = licenses.mit;
30     maintainers = with maintainers; [ maxwilson ];
31   };