1{
2 lib,
3 azure-core,
4 buildPythonPackage,
5 fetchPypi,
6 setuptools,
7 isodate,
8 typing-extensions,
9 yarl,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-data-tables";
14 version = "12.7.0";
15 pyproject = true;
16
17 src = fetchPypi {
18 pname = "azure_data_tables";
19 inherit version;
20 hash = "sha256-sU/JSjIjooNf9WiOF9jhB7J8fNfEEUE48qyBNzcjcF0=";
21 };
22
23 build-system = [ setuptools ];
24
25 dependencies = [
26 azure-core
27 isodate
28 typing-extensions
29 yarl
30 ];
31
32 # Module has no tests
33 doCheck = false;
34
35 pythonImportsCheck = [ "azure.data.tables" ];
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 = [ ];
43 };
44}