summary refs log blame commit diff
path: root/pkgs/development/python-modules/aioazuredevops/default.nix
blob: 4c8cd7a45dc876b101b664be1f27988edf434df5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                           
                    




                          
                                                                   






















                                                            
{ lib
, buildPythonPackage
, isPy27
, fetchPypi
, aiohttp
, click
}:

buildPythonPackage rec {
  pname = "aioazuredevops";
  version = "1.4.3";

  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-vNTvSQYjjptdPsHz0zM9paq3iodZrhcEralPm6YRZJE=";
  };

  propagatedBuildInputs = [
    aiohttp
    click
  ];

  # no tests implemented
  doCheck = false;

  pythonImportsCheck = [
    "aioazuredevops.builds"
    "aioazuredevops.client"
    "aioazuredevops.core"
  ];

  meta = with lib; {
    description = "Get data from the Azure DevOps API";
    homepage = "https://github.com/timmo001/aioazuredevops";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}