13 buildPythonPackage rec {
14 pname = "testrail-api";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
22 repo = "testrail-api";
23 rev = "refs/tags/${version}";
24 hash = "sha256-GR1yhky33XZZFcPEO2WRvVUkmekG9HoM00doVgTCD+0=";
32 dependencies = [ requests ];
39 pythonImportsCheck = [ "testrail_api" ];
42 description = "Python wrapper of the TestRail API";
43 homepage = "https://github.com/tolstislon/testrail-api";
44 changelog = "https://github.com/tolstislon/testrail-api/releases/tag/${version}";
45 license = with lib.licenses; [ mit ];
46 maintainers = with lib.maintainers; [ aanderse ];