1{ lib
2, buildPythonPackage
3, fetchPypi
4, requests
5, adal
6, azure-common
7, futures
8, pathlib2
9, isPy3k
10}:
11
12buildPythonPackage rec {
13 pname = "azure-datalake-store";
14 version = "0.0.48";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "d27c335783d4add00b3a5f709341e4a8009857440209e15a739a9a96b52386f7";
19 };
20
21 propagatedBuildInputs = [
22 requests
23 adal
24 azure-common
25 ] ++ lib.optionals (!isPy3k) [
26 futures
27 pathlib2
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; [ mwilsoninsight ];
38 };
39}