Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 39 lines 792 B view raw
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.45"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "1k2wkpdv30wjmi53zdcsa5xfqw8gyak39na73ja6rb7wy8196wbd"; 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://docs.microsoft.com/en-us/python/api/overview/azure/data-lake-store?view=azure-python; 36 license = licenses.mit; 37 maintainers = with maintainers; [ mwilsoninsight ]; 38 }; 39}