10 buildPythonPackage rec {
11 pname = "pytest-pytestrail";
13 format = "setuptools";
15 src = fetchFromGitHub {
17 repo = "pytest-pytestrail";
19 sha256 = "sha256-y34aRxQ8mu6b6GBRMFVzn1shMVc7TumdjRS3daMEZJM=";
22 nativeBuildInputs = [ setuptools-scm ];
24 buildInputs = [ pytest ];
26 propagatedBuildInputs = [ testrail-api ];
28 # all tests require network accesss
31 pythonImportsCheck = [ "pytest_pytestrail" ];
34 description = "Pytest plugin for interaction with TestRail";
35 homepage = "https://github.com/tolstislon/pytest-pytestrail";
36 changelog = "https://github.com/tolstislon/pytest-pytestrail/releases/tag/${version}";
37 license = with licenses; [ mit ];
38 maintainers = with maintainers; [ aanderse ];