Merge pull request #114324 from fabaff/bump-pytest-subtests

python3Packages.pytest-subtests: 0.3.2 -> 0.4.0
This commit is contained in:
davidak 2021-02-25 12:29:58 +01:00 committed by GitHub
commit 651b0c786b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,22 +1,31 @@
{ lib, buildPythonPackage, isPy27, fetchPypi, setuptools_scm, pytestCheckHook }: { lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-subtests"; pname = "pytest-subtests";
version = "0.3.2"; version = "0.4.0";
disabled = isPy27; disabled = pythonOlder "3.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1mxg91mrn8672f8hwg0f31xkyarnq7q0hr4fvb9hcb09jshq2wk7"; sha256 = "sha256-jZ4sHR3OEfe30snQkgLr/HdXt/8MrJtyrTKO3+fuA3s=";
}; };
nativeBuildInputs = [ setuptools_scm ]; nativeBuildInputs = [ setuptools-scm ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pytest_subtests" ];
meta = with lib; { meta = with lib; {
description = "pytest plugin for unittest subTest() support and subtests fixture"; description = "pytest plugin for unittest subTest() support and subtests fixture";
homepage = "https://github.com/pytest-dev/pytest-subtests"; homepage = "https://github.com/pytest-dev/pytest-subtests";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ];
}; };
} }