Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / aioazuredevops / default.nix
blob2054b49b7ce2169579469d978d4e5a0b1994f6fb
1 { lib
2 , buildPythonPackage
3 , isPy27
4 , fetchPypi
5 , aiohttp
6 , click
7 }:
9 buildPythonPackage rec {
10   pname = "aioazuredevops";
11   version = "1.4.3";
13   disabled = isPy27;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-vNTvSQYjjptdPsHz0zM9paq3iodZrhcEralPm6YRZJE=";
18   };
20   propagatedBuildInputs = [
21     aiohttp
22     click
23   ];
25   # no tests implemented
26   doCheck = false;
28   pythonImportsCheck = [
29     "aioazuredevops.builds"
30     "aioazuredevops.client"
31     "aioazuredevops.core"
32   ];
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   };