Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrestazure 5, azure-common 6, azure-mgmt-datalake-nspkg 7}: 8 9buildPythonPackage rec { 10 pname = "azure-mgmt-datalake-analytics"; 11 version = "0.6.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 extension = "zip"; 16 sha256 = "0d64c4689a67d6138eb9ffbaff2eda2bace7d30b846401673183dcb42714de8f"; 17 }; 18 19 propagatedBuildInputs = [ 20 msrestazure 21 azure-common 22 azure-mgmt-datalake-nspkg 23 ]; 24 25 pythonNamespaces = [ "azure.mgmt.datalake" ]; 26 27 # has no tests 28 doCheck = false; 29 30 meta = with lib; { 31 description = "This is the Microsoft Azure Data Lake Analytics Management Client Library"; 32 homepage = "https://github.com/Azure/azure-sdk-for-python"; 33 license = licenses.mit; 34 maintainers = with maintainers; [ maxwilson ]; 35 }; 36}