python3Packages.azure-mgmt-containerregistry: init at 2.8.0

wip/yesman
Jonathan Ringer 5 years ago committed by Jon
parent 8354b5c7a9
commit b4a079bd65
  1. 31
      pkgs/development/python-modules/azure-mgmt-containerregistry/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,31 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, azure-common
, msrest
, msrestazure
}:
buildPythonPackage rec {
version = "2.8.0";
pname = "azure-mgmt-containerregistry";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "193k07a77z7bj61zn2gxvvfqi20cgxksvxp7if71bwsl1l2y2jxj";
extension = "zip";
};
propagatedBuildInputs = [ azure-common msrest msrestazure ];
# no tests included
doCheck = false;
pythonImportsCheck = [ "azure.common" "azure.mgmt.containerregistry" ];
meta = with lib; {
description = "Microsoft Azure Container Registry Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

@ -331,6 +331,8 @@ in {
azure-mgmt-containerinstance = callPackage ../development/python-modules/azure-mgmt-containerinstance { };
azure-mgmt-containerregistry = callPackage ../development/python-modules/azure-mgmt-containerregistry { };
azure-mgmt-containerservice = callPackage ../development/python-modules/azure-mgmt-containerservice { };
azure-mgmt-cosmosdb = callPackage ../development/python-modules/azure-mgmt-cosmosdb { };

Loading…
Cancel
Save