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 , fetchPypi
, pythonOlder , pythonOlder
, setuptools-scm , setuptools-scm
, six
, pytestCheckHook , pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "repeated-test"; pname = "repeated-test";
version = "2.3.1"; version = "2.3.3";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
@ -17,17 +16,13 @@ buildPythonPackage rec {
src = fetchPypi { src = fetchPypi {
pname = "repeated_test"; pname = "repeated_test";
inherit version; inherit version;
hash = "sha256-TbVyQA7EjCSwo6qfDksbE8IU1ElkSCABEUBWy5j1KJc="; hash = "sha256-3YPU8SL9rud5s0pnwwH5TJk1MXsDhdkDnZp/Oj6sgXs=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
setuptools-scm setuptools-scm
]; ];
propagatedBuildInputs = [
six
];
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
]; ];
@ -39,6 +34,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Unittest-compatible framework for repeating a test function over many fixtures"; description = "Unittest-compatible framework for repeating a test function over many fixtures";
homepage = "https://github.com/epsy/repeated_test"; homepage = "https://github.com/epsy/repeated_test";
changelog = "https://github.com/epsy/repeated_test/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ tjni ]; maintainers = with maintainers; [ tjni ];
}; };