Files
nixpkgs/pkgs/development/python-modules/azure-data-tables/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

45 lines
932 B
Nix

{
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 = [ ];
};
}