python3Packages.azure-synapse-accesscontrol: init at 0.2.0

This commit is contained in:
Jonathan Ringer 2020-09-02 13:39:05 -07:00 committed by Jon
parent b346c10aec
commit 23ebed860a
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib, buildPythonPackage, fetchPypi
, azure-common
, azure-core
, msrest
}:
buildPythonPackage rec {
pname = "azure-synapse-accesscontrol";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "1rsdqrhrgy09kbw6c7krb4hlaxs1ldb6lilwrbxgp3zqybxxnh5b";
extension = "zip";
};
propagatedBuildInputs = [
azure-common
azure-core
msrest
];
pythonImportsCheck = [ "azure.synapse.accesscontrol" ];
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

@ -707,6 +707,8 @@ in {
azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { };
azure-synapse-accesscontrol = callPackage ../development/python-modules/azure-synapse-accesscontrol { };
Babel = callPackage ../development/python-modules/Babel { };
babelfish = callPackage ../development/python-modules/babelfish { };