pythonPackages.azure-mgmt-advisor: init at 2.0.1
This commit is contained in:
parent
7495918f3a
commit
58ec74f20a
@ -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-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-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||||
|
|
||||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user