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