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