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