python3Packages.azure-mgmt-servicelinker: init at 1.0.0b1

This commit is contained in:
Jonathan Ringer 2021-11-20 15:12:42 -08:00 committed by Jonathan Ringer
parent fc4a44d29a
commit 7a29d47832
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-mgmt-core
, msrest
}:
buildPythonPackage rec {
pname = "azure-mgmt-servicelinker";
version = "1.0.0b1";
src = fetchPypi {
inherit pname version;
sha256 = "4f70d3bcd98ba539bfef870e3c497ebdc5efed3200c2627a61718baa9ab21a61";
extension = "zip";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
];
pythonImportsCheck = [ "azure.mgmt.servicelinker" ];
# no tests with sdist
doCheck = false;
meta = with lib; {
description = "Microsoft Azure Servicelinker Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

View file

@ -969,6 +969,8 @@ in {
azure-mgmt-servicefabricmanagedclusters = callPackage ../development/python-modules/azure-mgmt-servicefabricmanagedclusters { };
azure-mgmt-servicelinker = callPackage ../development/python-modules/azure-mgmt-servicelinker { };
azure-mgmt-signalr = callPackage ../development/python-modules/azure-mgmt-signalr { };
azure-mgmt-sql = callPackage ../development/python-modules/azure-mgmt-sql { };