pythonPackages.azure-mgmt-advisor: init at 2.0.1

wip/yesman
Max Wilson 5 years ago committed by Wael M. Nasreddine
parent 7495918f3a
commit 58ec74f20a
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
  1. 38
      pkgs/development/python-modules/azure-mgmt-advisor/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, isPy3k
, azure-mgmt-nspkg
}:
buildPythonPackage rec {
pname = "azure-mgmt-advisor";
version = "2.0.1";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1929d6d5ba49d055fdc806e981b93cf75ea42ba35f78222aaf42d8dcf29d4ef3";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Advisor Client Library";
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-advisor;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

@ -278,6 +278,8 @@ in {
azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { };
azure-mgmt-advisor = callPackage ../development/python-modules/azure-mgmt-advisor { };
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };

Loading…
Cancel
Save