ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-hdinsight / default.nix
bloba6920815f0fa30aecbe903b2abc851505d6a8b4c
1 { lib, buildPythonPackage, fetchPypi, isPy27
2 , azure-common
3 , azure-mgmt-core
4 , msrest
5 , msrestazure
6 }:
8 buildPythonPackage rec {
9   version = "9.0.0";
10   pname = "azure-mgmt-hdinsight";
11   disabled = isPy27;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "41ebdc69c0d1f81d25dd30438c14fff4331f66639f55805b918b9649eaffe78a";
16     extension = "zip";
17   };
19   propagatedBuildInputs = [
20     azure-common
21     azure-mgmt-core
22     msrest
23     msrestazure
24   ];
26   # no tests included
27   doCheck = false;
29   pythonImportsCheck = [ "azure.common" "azure.mgmt.hdinsight" ];
31   meta = with lib; {
32     description = "Microsoft Azure HDInsight Management Client Library for Python";
33     homepage = "https://github.com/Azure/azure-sdk-for-python";
34     license = licenses.mit;
35     maintainers = with maintainers; [ jonringer ];
36   };