Files

44 lines
838 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
azure-common,
azure-mgmt-core,
msrest,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "azure-mgmt-servicelinker";
version = "1.1.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-QVw6Y9HachwBRwCbF0cSGLCAkSJtNnXBvsj5YX1TmJU=";
extension = "zip";
};
build-system = [ setuptools ];
dependencies = [
azure-common
azure-mgmt-core
msrest
];
pythonImportsCheck = [ "azure.mgmt.servicelinker" ];
# no tests with sdist
doCheck = false;
meta = {
description = "Microsoft Azure Servicelinker Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = lib.licenses.mit;
maintainers = [ ];
};
})