Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, isPy27 4, fetchPypi 5, aiohttp 6, click 7}: 8 9buildPythonPackage rec { 10 pname = "aioazuredevops"; 11 version = "1.4.3"; 12 13 disabled = isPy27; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-vNTvSQYjjptdPsHz0zM9paq3iodZrhcEralPm6YRZJE="; 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}