Merge pull request #188504 from r-ryantm/auto-update/python310Packages.pytest-testmon

python310Packages.pytest-testmon: 1.3.4 -> 1.3.5
This commit is contained in:
Fabian Affolter 2022-08-28 11:02:58 +02:00 committed by GitHub
commit fd3d24ce67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,32 +1,42 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, coverage
, fetchPypi
, pytest
, pythonOlder
}:
buildPythonPackage rec {
pname = "pytest-testmon";
version = "1.3.4";
disabled = pythonOlder "3.6";
version = "1.3.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-jr+uKjtm5nFYHrZpG63VNK/wO93TQJh1x4SoTxJtlw0=";
hash = "sha256-ncgNO76j2Z3766ojYydUoYZzRoTb2XxhR6FkKFzjyhI=";
};
propagatedBuildInputs = [ pytest coverage ];
buildInputs = [
pytest
];
propagatedBuildInputs = [
coverage
];
# The project does not include tests since version 1.3.0
doCheck = false;
pythonImportsCheck = [ "testmon" ];
pythonImportsCheck = [
"testmon"
];
meta = with lib; {
description = "Pytest plug-in which automatically selects and re-executes only tests affected by recent changes";
homepage = "https://github.com/tarpas/pytest-testmon/";
description = "This is a py.test plug-in which automatically selects and re-executes only tests affected by recent changes";
license = licenses.mit;
maintainers = [ maintainers.dmvianna ];
maintainers = with maintainers; [ dmvianna ];
};
}