1{ lib 2, azure-core 3, buildPythonPackage 4, fetchPypi 5, isodate 6, pythonOlder 7, typing-extensions 8, yarl 9}: 10 11buildPythonPackage rec { 12 pname = "azure-data-tables"; 13 version = "12.4.4"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 hash = "sha256-HWjIQBWYmU43pSxKLcwx45EExn10jeEkyY9Hpbyn0vw="; 21 }; 22 23 propagatedBuildInputs = [ 24 azure-core 25 isodate 26 typing-extensions 27 yarl 28 ]; 29 30 # Module has no tests 31 doCheck = false; 32 33 pythonImportsCheck = [ 34 "azure.data.tables" 35 ]; 36 37 meta = with lib; { 38 description = "NoSQL data storage service that can be accessed from anywhere"; 39 homepage = "https://github.com/Azure/azure-sdk-for-python"; 40 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-data-tables_${version}/sdk/tables/azure-data-tables/CHANGELOG.md"; 41 license = licenses.mit; 42 maintainers = with maintainers; [ jonringer ]; 43 }; 44}