python3Packages.azure-mgmt-core: init at 1.0.0

This commit is contained in:
Jonathan Ringer 2020-04-22 16:02:15 -07:00 committed by Jon
parent d17be33ecb
commit 5a89480b81
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ pkgs
, buildPythonPackage
, fetchPypi
, python
, azure-core
, isPy3k
}:
buildPythonPackage rec {
version = "1.0.0";
pname = "azure-mgmt-core";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0pm565v05480f672l0n8z2sg6zk6iqyi91n0dhscibhdl54sy3si";
};
propagatedBuildInputs = [
azure-core
];
pythonNamespaces = "azure.mgmt";
# not included
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.core" "azure.core" ];
meta = with pkgs.lib; {
description = "Microsoft Azure Management Core Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

View file

@ -378,6 +378,8 @@ in {
azure-mgmt-containerservice = callPackage ../development/python-modules/azure-mgmt-containerservice { };
azure-mgmt-core = callPackage ../development/python-modules/azure-mgmt-core { };
azure-mgmt-cosmosdb = callPackage ../development/python-modules/azure-mgmt-cosmosdb { };
azure-mgmt-datafactory = callPackage ../development/python-modules/azure-mgmt-datafactory { };