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