Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
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 = "0.0.53"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.8"; 18 19 src = fetchPypi { 20 inherit pname version; 21 hash = "sha256-BbbeYu4/KgpuaUHmkzt5K4AMPn9v/OL8MkvBmHV1c5M="; 22 }; 23 24 propagatedBuildInputs = [ 25 adal 26 azure-common 27 msal 28 requests 29 ]; 30 31 # has no tests 32 doCheck = false; 33 34 meta = with lib; { 35 description = "This project is the Python filesystem library for Azure Data Lake Store"; 36 homepage = "https://github.com/Azure/azure-sdk-for-python"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ maxwilson ]; 39 }; 40}