summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-datalake-store/default.nix
blob: fe659949a4d2cd08fc611c18b852d719b1b85166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  lib,
  adal,
  azure-common,
  buildPythonPackage,
  fetchPypi,
  msal,
  requests,
  setuptools,
}:

buildPythonPackage (finalAttrs: {
  pname = "azure-datalake-store";
  version = "1.0.1";
  pyproject = true;

  src = fetchPypi {
    pname = "azure_datalake_store";
    inherit (finalAttrs) version;
    hash = "sha256-U2TURFqrFUocfLECFWKcPORs5ceqrxYHGJDAP65ToDU=";
  };

  build-system = [ setuptools ];

  dependencies = [
    adal
    azure-common
    msal
    requests
  ];

  # has no tests
  doCheck = false;

  meta = {
    description = "This project is the Python filesystem library for Azure Data Lake Store";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ maxwilson ];
  };
})