1{ lib
2, buildPythonPackage
3, isPy27
4, fetchPypi
5, aiohttp
6, click
7}:
8
9buildPythonPackage rec {
10 pname = "aioazuredevops";
11 version = "1.3.5";
12
13 disabled = isPy27;
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "4c98a995d0516f502ba191fa3ac973ee72b93425e7eab3cdf770516c6e93c780";
18 };
19
20 propagatedBuildInputs = [
21 aiohttp
22 click
23 ];
24
25 # no tests implemented
26 doCheck = false;
27
28 pythonImportsCheck = [
29 "aioazuredevops.builds"
30 "aioazuredevops.client"
31 "aioazuredevops.core"
32 ];
33
34 meta = with lib; {
35 description = "Get data from the Azure DevOps API";
36 homepage = "https://github.com/timmo001/aioazuredevops";
37 license = licenses.mit;
38 maintainers = with maintainers; [ dotlambda ];
39 };
40}