anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-datalake-store / default.nix
blob2d08ad2f43d32d70c0de409c31660845784ed6a6
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   msrestazure,
6   azure-common,
7   azure-mgmt-datalake-nspkg,
8   azure-mgmt-core,
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-datalake-store";
13   version = "1.0.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     extension = "zip";
19     hash = "sha256-GrmVK97M+iojevPLVTuLmfQRLxvrHtr9DRHymJvLYHE=";
20   };
22   propagatedBuildInputs = [
23     msrestazure
24     azure-common
25     azure-mgmt-core
26     azure-mgmt-datalake-nspkg
27   ];
29   pythonNamespaces = [ "azure.mgmt.datalake" ];
31   # has no tests
32   doCheck = false;
34   meta = with lib; {
35     description = "This is the Microsoft Azure Data Lake Store Management Client Library";
36     homepage = "https://github.com/Azure/azure-sdk-for-python";
37     license = licenses.mit;
38     maintainers = with maintainers; [
39       maxwilson
40     ];
41   };