1 { lib, buildPythonPackage, fetchFromGitHub
7 buildPythonPackage rec {
9 pname = "azure-functions-devops-build";
11 src = fetchFromGitHub {
13 repo = "azure-functions-devops-build";
14 # rev picked based on pypi release date
15 rev = "c8249670acc77333e3de8b21dec60faf7ecf0951";
16 sha256 = "1slc7jd92v9q1qg1yacnrpi2a7hi7iw61wzbzfd6wx9q63pw9yqi";
19 propagatedBuildInputs = [ jinja2 msrest vsts ];
21 # circular dependency with azure-cli-core
25 description = "Integrate Azure Functions with Azure DevOps. Specifically made for the Azure CLI";
26 homepage = "https://github.com/Azure/azure-functions-devops-build";
27 license = licenses.mit;
28 maintainers = with maintainers; [ jonringer ];