Merge pull request #244133 from tjni/repeated-test

python310Packages.repeated-test: 2.3.1 -> 2.3.3
This commit is contained in:
Nick Cao
2023-07-18 16:51:26 -06:00
committed by GitHub
@@ -3,13 +3,12 @@
, fetchPypi
, pythonOlder
, setuptools-scm
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "repeated-test";
version = "2.3.1";
version = "2.3.3";
format = "pyproject";
disabled = pythonOlder "3.5";
@@ -17,17 +16,13 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "repeated_test";
inherit version;
hash = "sha256-TbVyQA7EjCSwo6qfDksbE8IU1ElkSCABEUBWy5j1KJc=";
hash = "sha256-3YPU8SL9rud5s0pnwwH5TJk1MXsDhdkDnZp/Oj6sgXs=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
six
];
nativeCheckInputs = [
pytestCheckHook
];
@@ -39,6 +34,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Unittest-compatible framework for repeating a test function over many fixtures";
homepage = "https://github.com/epsy/repeated_test";
changelog = "https://github.com/epsy/repeated_test/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ tjni ];
};