python3Packages.azure-synapse-accesscontrol: init at 0.2.0
This commit is contained in:
parent
b346c10aec
commit
23ebed860a
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user