Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.azure-mgmt-advisor: init at 2.0.1

authored by Max Wilson and committed by Wael M. Nasreddine 58ec74f2 7495918f

+40
+38
pkgs/development/python-modules/azure-mgmt-advisor/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , msrest 5 + , msrestazure 6 + , azure-common 7 + , isPy3k 8 + , azure-mgmt-nspkg 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "azure-mgmt-advisor"; 13 + version = "2.0.1"; 14 + 15 + src = fetchPypi { 16 + inherit pname version; 17 + extension = "zip"; 18 + sha256 = "1929d6d5ba49d055fdc806e981b93cf75ea42ba35f78222aaf42d8dcf29d4ef3"; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + msrest 23 + msrestazure 24 + azure-common 25 + ] ++ lib.optionals (!isPy3k) [ 26 + azure-mgmt-nspkg 27 + ]; 28 + 29 + # has no tests 30 + doCheck = false; 31 + 32 + meta = with lib; { 33 + description = "This is the Microsoft Azure Advisor Client Library"; 34 + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-advisor; 35 + license = licenses.mit; 36 + maintainers = with maintainers; [ mwilsoninsight ]; 37 + }; 38 + }
+2
pkgs/top-level/python-packages.nix
··· 278 278 279 279 azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { }; 280 280 281 + azure-mgmt-advisor = callPackage ../development/python-modules/azure-mgmt-advisor { }; 282 + 281 283 azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; 282 284 283 285 azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };