python3Packages.azure-mgmt-sqlvirtualmachine: init at 0.4.0
This commit is contained in:
parent
f7ee6a66f6
commit
21552a4b17
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||||
|
, azure-common
|
||||||
|
, msrest
|
||||||
|
, msrestazure
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.4.0";
|
||||||
|
pname = "azure-mgmt-sqlvirtualmachine";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1jxmikjvyxkwr8c9kn6xw8gvj9pajlk7y8111rq8fgkivwjq8wcm";
|
||||||
|
extension = "zip";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ azure-common msrest msrestazure ];
|
||||||
|
|
||||||
|
# no tests included
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "azure.common" "azure.mgmt.sqlvirtualmachine" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Microsoft Azure SQL Virtual Machine Management Client Library for Python";
|
||||||
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jonringer ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -437,6 +437,8 @@ in {
|
||||||
|
|
||||||
azure-mgmt-sql = callPackage ../development/python-modules/azure-mgmt-sql { };
|
azure-mgmt-sql = callPackage ../development/python-modules/azure-mgmt-sql { };
|
||||||
|
|
||||||
|
azure-mgmt-sqlvirtualmachine = callPackage ../development/python-modules/azure-mgmt-sqlvirtualmachine { };
|
||||||
|
|
||||||
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };
|
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };
|
||||||
|
|
||||||
azure-mgmt-subscription = callPackage ../development/python-modules/azure-mgmt-subscription { };
|
azure-mgmt-subscription = callPackage ../development/python-modules/azure-mgmt-subscription { };
|
||||||
|
|
Loading…
Reference in New Issue