Files
nixpkgs/pkgs/development/python-modules/azure-datalake-store/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
778 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}