Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-datalake-store / default.nix
blob2ab479b3f7c2f702e47340c6af21656aa1dc1cf0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrestazure
5 , azure-common
6 , azure-mgmt-datalake-nspkg
7 , azure-mgmt-core
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-datalake-store";
12   version = "1.0.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     hash = "sha256-GrmVK97M+iojevPLVTuLmfQRLxvrHtr9DRHymJvLYHE=";
19   };
21   propagatedBuildInputs = [
22     msrestazure
23     azure-common
24     azure-mgmt-core
25     azure-mgmt-datalake-nspkg
26   ];
28   pythonNamespaces = [ "azure.mgmt.datalake" ];
30   # has no tests
31   doCheck = false;
33   meta = with lib; {
34     description = "This is the Microsoft Azure Data Lake Store Management Client Library";
35     homepage = "https://github.com/Azure/azure-sdk-for-python";
36     license = licenses.mit;
37     maintainers = with maintainers; [ jonringer maxwilson ];
38   };