python3Packages.pytest-mock: 3.6.1 -> 3.7.0

This commit is contained in:
Robert Schütz 2022-02-09 23:57:13 +00:00 committed by Jonathan Ringer
parent f1cd446bcf
commit c4bd8a390a

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytest-asyncio
, pytestCheckHook
, setuptools-scm
@ -8,15 +9,19 @@
buildPythonPackage rec {
pname = "pytest-mock";
version = "3.6.1";
version = "3.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "40217a058c52a63f1042f0784f62009e976ba824c418cced42e88d5f40ab0e62";
hash = "sha256-URK9ksyfGG7pbhqS78hJaepJSTnDrq05xQ9CHEzGlTQ=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
pytest
];
checkInputs = [
pytest-asyncio
pytestCheckHook
@ -34,6 +39,6 @@ buildPythonPackage rec {
description = "Thin-wrapper around the mock package for easier use with pytest";
homepage = "https://github.com/pytest-dev/pytest-mock";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ dotlambda ];
};
}