23 buildPythonPackage rec {
24 pname = "aioazuredevops";
28 disabled = pythonOlder "3.12";
30 src = fetchFromGitHub {
32 repo = "aioazuredevops";
33 rev = "refs/tags/${version}";
34 hash = "sha256-RZBiFPzYtEoc51T3irVHL9xVlZgACyM2lu1TkMoatqU=";
38 substituteInPlace requirements_setup.txt \
39 --replace-fail "==" ">="
62 # https://github.com/timmo001/aioazuredevops/issues/44
68 pytestFlagsArray = [ "--snapshot-update" ];
70 pythonImportsCheck = [ "aioazuredevops" ];
73 changelog = "https://github.com/timmo001/aioazuredevops/releases/tag/${version}";
74 description = "Get data from the Azure DevOps API";
75 homepage = "https://github.com/timmo001/aioazuredevops";
76 license = licenses.mit;
77 maintainers = with maintainers; [ dotlambda ];