summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix
blob: f9c27c9929bb12801cff5b086749655a5736ff62 (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  azure-mgmt-nspkg,
  setuptools,
}:

buildPythonPackage (finalAttrs: {
  pname = "azure-mgmt-datalake-nspkg";
  version = "3.0.1";
  pyproject = true;

  __structuredAttrs = true;

  src = fetchPypi {
    inherit (finalAttrs) pname version;
    extension = "zip";
    hash = "sha256-3rGSukIviz7Ccs5OiHNnlvIW8o6lsD8oMx14S3o/SIA=";
  };

  build-system = [ setuptools ];

  dependencies = [ azure-mgmt-nspkg ];

  # has no tests
  doCheck = false;

  meta = {
    description = "This is the Microsoft Azure Data Lake Management namespace package";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ maxwilson ];
  };
})