nixpkgs/pkgs/development/python-modules/pytest-pytestrail/default.nix
2023-03-13 20:40:42 -04:00

49 lines
977 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, pytest
, testrail-api
}:
buildPythonPackage rec {
pname = "pytest-pytestrail";
version = "0.10.5";
SETUPTOOLS_SCM_PRETEND_VERSION = version;
src = fetchFromGitHub {
owner = "tolstislon";
repo = "pytest-pytestrail";
rev = version;
sha256 = "sha256-y34aRxQ8mu6b6GBRMFVzn1shMVc7TumdjRS3daMEZJM=";
};
nativeBuildInputs = [
setuptools-scm
];
buildInputs = [
pytest
];
propagatedBuildInputs = [
testrail-api
];
# all tests require network accesss
doCheck = false;
pythonImportsCheck = [
"pytest_pytestrail"
];
meta = with lib; {
description = "Pytest plugin for interaction with TestRail";
homepage = "https://github.com/tolstislon/pytest-pytestrail";
changelog = "https://github.com/tolstislon/pytest-pytestrail/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ aanderse ];
};
}