python3Packages.azure-mgmt-synapse: init at 0.3.0

This commit is contained in:
Jonathan Ringer 2020-09-02 13:24:03 -07:00 committed by Jon
parent 417d98f97a
commit e8306e3be9
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, azure-common
, msrest
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-mgmt-synapse";
version = "0.3.0";
disabled = pythonOlder "3";
src = fetchPypi {
inherit pname version;
sha256 = "0sa12s5af9xl1wnblilswxc6ydr2anm9an000iz3ks54pydby2vy";
extension = "zip";
};
propagatedBuildInputs = [
azure-common
msrest
msrestazure
];
pythonImportsCheck = [ "azure.mgmt.synapse" ];
meta = with lib; {
description = "Azure python SDK";
homepage = "https://github.com/Azure/azure-sdk-for-python/";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

View file

@ -677,6 +677,8 @@ in {
azure-mgmt-subscription = callPackage ../development/python-modules/azure-mgmt-subscription { };
azure-mgmt-synapse = callPackage ../development/python-modules/azure-mgmt-synapse { };
azure-mgmt-trafficmanager = callPackage ../development/python-modules/azure-mgmt-trafficmanager { };
azure-mgmt-web = callPackage ../development/python-modules/azure-mgmt-web { };