Unverified Commit 7e67ece8 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #244133 from tjni/repeated-test

python310Packages.repeated-test: 2.3.1 -> 2.3.3
parents 674d9b77 67f82ec5
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -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 ];
  };