Files
nixpkgs/pkgs/development/python-modules/azure-storage-file-share/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

52 lines
1.2 KiB
Nix

{
lib,
azure-core,
buildPythonPackage,
cryptography,
fetchPypi,
isodate,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-storage-file-share";
version = "12.23.1";
pyproject = true;
src = fetchPypi {
pname = "azure_storage_file_share";
inherit version;
hash = "sha256-naU7VvgJD8U9kz7OWp+yRwEMO0p1/5CKlI4kje+yH64=";
};
build-system = [ setuptools ];
dependencies = [
azure-core
cryptography
isodate
typing-extensions
];
optional-dependencies = {
aio = [ azure-core ] ++ azure-core.optional-dependencies.aio;
};
# Tests require checkout from monorepo
doCheck = false;
pythonImportsCheck = [
"azure.core"
"azure.storage"
];
meta = {
description = "Microsoft Azure File Share Storage Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-share";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-file-share_${version}/sdk/storage/azure-storage-file-share/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kamadorueda ];
};
}