1{ lib
2, adal
3, azure-common
4, buildPythonPackage
5, fetchPypi
6, msal
7, pythonOlder
8, requests
9}:
10
11buildPythonPackage rec {
12 pname = "azure-datalake-store";
13 version = "0.0.53";
14 format = "setuptools";
15
16 disabled = pythonOlder "3.8";
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "sha256-BbbeYu4/KgpuaUHmkzt5K4AMPn9v/OL8MkvBmHV1c5M=";
21 };
22
23 propagatedBuildInputs = [
24 adal
25 azure-common
26 msal
27 requests
28 ];
29
30 # has no tests
31 doCheck = false;
32
33 meta = with lib; {
34 description = "This project is the Python filesystem library for Azure Data Lake Store";
35 homepage = "https://github.com/Azure/azure-sdk-for-python";
36 license = licenses.mit;
37 maintainers = with maintainers; [ maxwilson ];
38 };
39}