12 buildPythonPackage rec {
13 pname = "azure-storage-file-datalake";
17 src = fetchFromGitHub {
19 repo = "azure-sdk-for-python";
20 tag = "azure-storage-file-datalake_${version}";
21 hash = "sha256-FT51a7yuSMLJSnMFK9N09Rc8p/uaoYCcj9WliSvY6UA=";
24 sourceRoot = "${src.name}/sdk/storage/azure-storage-file-datalake";
26 build-system = [ setuptools ];
35 optional-dependencies = {
36 aio = [ azure-core ] ++ azure-core.optional-dependencies.aio;
39 pythonImportsCheck = [ "azure.storage.filedatalake" ];
41 # require devtools_testutils which is a internal package for azure-sdk
45 description = "Microsoft Azure File DataLake Storage Client Library for Python";
46 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-datalake";
47 license = lib.licenses.mit;
48 maintainers = with lib.maintainers; [ ];