depot/third_party/nixpkgs/pkgs/development/python-modules/azure-datalake-store/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

40 lines
751 B
Nix

{
lib,
adal,
azure-common,
buildPythonPackage,
fetchPypi,
msal,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "azure-datalake-store";
version = "0.0.53";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-BbbeYu4/KgpuaUHmkzt5K4AMPn9v/OL8MkvBmHV1c5M=";
};
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 ];
};
}