stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / azure-storage-file-datalake / default.nix
blob5949c951216c848941333f410b42ebb96a46f408
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   azure-core,
7   azure-storage-blob,
8   isodate,
9   typing-extensions,
12 buildPythonPackage rec {
13   pname = "azure-storage-file-datalake";
14   version = "12.17.0";
15   pyproject = true;
17   src = fetchFromGitHub {
18     owner = "Azure";
19     repo = "azure-sdk-for-python";
20     tag = "azure-storage-file-datalake_${version}";
21     hash = "sha256-FT51a7yuSMLJSnMFK9N09Rc8p/uaoYCcj9WliSvY6UA=";
22   };
24   sourceRoot = "${src.name}/sdk/storage/azure-storage-file-datalake";
26   build-system = [ setuptools ];
28   dependencies = [
29     azure-core
30     azure-storage-blob
31     isodate
32     typing-extensions
33   ];
35   optional-dependencies = {
36     aio = [ azure-core ] ++ azure-core.optional-dependencies.aio;
37   };
39   pythonImportsCheck = [ "azure.storage.filedatalake" ];
41   # require devtools_testutils which is a internal package for azure-sdk
42   doCheck = false;
44   meta = {
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; [ ];
49   };