1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 msrestazure,
6 azure-common,
7 azure-mgmt-datalake-nspkg,
8 azure-mgmt-core,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-datalake-store";
13 version = "1.0.0";
14 format = "setuptools";
15
16 src = fetchPypi {
17 inherit pname version;
18 extension = "zip";
19 hash = "sha256-GrmVK97M+iojevPLVTuLmfQRLxvrHtr9DRHymJvLYHE=";
20 };
21
22 propagatedBuildInputs = [
23 msrestazure
24 azure-common
25 azure-mgmt-core
26 azure-mgmt-datalake-nspkg
27 ];
28
29 pythonNamespaces = [ "azure.mgmt.datalake" ];
30
31 # has no tests
32 doCheck = false;
33
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 };
42}