pythonPackages.azure-functions-devops-build: init at 0.0.22

This commit is contained in:
Jonathan Ringer 2019-10-22 21:39:32 -07:00 committed by Jon
parent 2defc2ade1
commit 7eaf6f8002
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib, buildPythonPackage, fetchFromGitHub
, jinja2
, msrest
, vsts
}:
buildPythonPackage rec {
version = "0.0.22";
pname = "azure-functions-devops-build";
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-functions-devops-build";
# rev picked based on pypi release date
rev = "c8249670acc77333e3de8b21dec60faf7ecf0951";
sha256 = "1slc7jd92v9q1qg1yacnrpi2a7hi7iw61wzbzfd6wx9q63pw9yqi";
};
propagatedBuildInputs = [ jinja2 msrest vsts ];
# circular dependency with azure-cli-core
doCheck = false;
meta = with lib; {
description = "Integrate Azure Functions with Azure DevOps. Specifically made for the Azure CLI";
homepage = "https://github.com/Azure/azure-functions-devops-build";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

View File

@ -271,6 +271,8 @@ in {
azure-eventgrid = callPackage ../development/python-modules/azure-eventgrid { };
azure-functions-devops-build = callPackage ../development/python-modules/azure-functions-devops-build { };
azure-graphrbac = callPackage ../development/python-modules/azure-graphrbac { };
azure-keyvault = callPackage ../development/python-modules/azure-keyvault { };