mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python3Packages.azure-mgmt-hdinsight: init at 1.2.0
This commit is contained in:
parent
06eec9876f
commit
f4f13e8e22
2 changed files with 33 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||
, azure-common
|
||||
, msrest
|
||||
, msrestazure
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "1.2.0";
|
||||
pname = "azure-mgmt-hdinsight";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1yq9s7a2ch8j84af3hzj350jnjq5s3ysiqvmypvcb7vl6rkkd2lm";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ azure-common msrest msrestazure ];
|
||||
|
||||
# no tests included
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "azure.common" "azure.mgmt.hdinsight" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Microsoft Azure HDInsight Management Client Library for Python";
|
||||
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
|
@ -361,6 +361,8 @@ in {
|
|||
|
||||
azure-mgmt-hanaonazure = callPackage ../development/python-modules/azure-mgmt-hanaonazure { };
|
||||
|
||||
azure-mgmt-hdinsight = callPackage ../development/python-modules/azure-mgmt-hdinsight { };
|
||||
|
||||
azure-mgmt-iotcentral = callPackage ../development/python-modules/azure-mgmt-iotcentral { };
|
||||
|
||||
azure-mgmt-iothub = callPackage ../development/python-modules/azure-mgmt-iothub { };
|
||||
|
|
Loading…
Reference in a new issue