python310Packages.repeated-test: 2.3.1 -> 2.3.3

This commit is contained in:
Theodore Ni 2023-07-18 01:09:47 -07:00
parent 293a68c901
commit 67f82ec53a
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -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 ];
};