Files
nixpkgs/pkgs/development/python-modules/azure-datalake-store/default.nix
T
Martin Weinelt 4d32db474a python3Packages.azure-datalake-store: 0.0.53 -> 1.0.1
This commit was automatically generated using update-python-libraries.
2025-08-09 18:58:06 +02:00

42 lines
778 B
Nix

{
lib,
adal,
azure-common,
buildPythonPackage,
fetchPypi,
msal,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "azure-datalake-store";
version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "azure_datalake_store";
inherit version;
hash = "sha256-U2TURFqrFUocfLECFWKcPORs5ceqrxYHGJDAP65ToDU=";
};
propagatedBuildInputs = [
adal
azure-common
msal
requests
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This project is the Python filesystem library for Azure Data Lake Store";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};
}