1{ lib 2, buildPythonPackage 3, fetchPypi 4, requests 5, adal 6, azure-common 7, futures ? null 8, pathlib2 9, isPy3k 10}: 11 12buildPythonPackage rec { 13 pname = "azure-datalake-store"; 14 version = "0.0.52"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "4198ddb32614d16d4502b43d5c9739f81432b7e0e4d75d30e05149fe6007fea2"; 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; [ maxwilson ]; 38 }; 39}