4d32db474a
This commit was automatically generated using update-python-libraries.
42 lines
778 B
Nix
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 ];
|
|
};
|
|
}
|