1{ lib
2, buildPythonPackage
3, fetchPypi
4, msrestazure
5, azure-common
6, azure-mgmt-datalake-nspkg
7, azure-mgmt-core
8}:
9
10buildPythonPackage rec {
11 pname = "azure-mgmt-datalake-store";
12 version = "1.0.0";
13
14 src = fetchPypi {
15 inherit pname version;
16 extension = "zip";
17 sha256 = "sha256-GrmVK97M+iojevPLVTuLmfQRLxvrHtr9DRHymJvLYHE=";
18 };
19
20 propagatedBuildInputs = [
21 msrestazure
22 azure-common
23 azure-mgmt-core
24 azure-mgmt-datalake-nspkg
25 ];
26
27 pythonNamespaces = [ "azure.mgmt.datalake" ];
28
29 # has no tests
30 doCheck = false;
31
32 meta = with lib; {
33 description = "This is the Microsoft Azure Data Lake Store Management Client Library";
34 homepage = "https://github.com/Azure/azure-sdk-for-python";
35 license = licenses.mit;
36 maintainers = with maintainers; [ jonringer maxwilson ];
37 };
38}