1{ lib 2, buildPythonPackage 3, fetchPypi 4, azure-core 5, msrest 6}: 7 8buildPythonPackage rec { 9 pname = "azure-data-tables"; 10 version = "12.4.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 extension = "zip"; 15 sha256 = "sha256-3V/I3pHi+JCO+kxkyn9jz4OzBoqbpCYpjeO1QTnpZlw="; 16 }; 17 18 propagatedBuildInputs = [ 19 azure-core 20 msrest 21 ]; 22 23 # has no tests 24 doCheck = false; 25 26 pythonImportsCheck = [ "azure.data.tables" ]; 27 28 meta = with lib; { 29 description = "NoSQL data storage service that can be accessed from anywhere"; 30 homepage = "https://github.com/Azure/azure-sdk-for-python"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ jonringer ]; 33 }; 34}