1{ lib, buildPythonPackage, fetchFromGitHub
2, jinja2
3, msrest
4, vsts
5}:
6
7buildPythonPackage rec {
8 version = "0.0.22";
9 pname = "azure-functions-devops-build";
10
11 src = fetchFromGitHub {
12 owner = "Azure";
13 repo = "azure-functions-devops-build";
14 # rev picked based on pypi release date
15 rev = "c8249670acc77333e3de8b21dec60faf7ecf0951";
16 sha256 = "1slc7jd92v9q1qg1yacnrpi2a7hi7iw61wzbzfd6wx9q63pw9yqi";
17 };
18
19 propagatedBuildInputs = [ jinja2 msrest vsts ];
20
21 # circular dependency with azure-cli-core
22 doCheck = false;
23
24 meta = with lib; {
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 ];
29 };
30}