python310Packages.mockito: 1.3.4 -> 1.3.5

This commit is contained in:
R. Ryantm 2022-08-19 06:50:01 +00:00
parent e9ce9a2b73
commit e49778efef

View file

@ -1,12 +1,12 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, funcsigs, pytest, numpy }:
buildPythonPackage rec {
version = "1.3.4";
version = "1.3.5";
pname = "mockito";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-RdJibODIxwY8xE8Gox9X1B0kHvLsm9pAMtULOedZXrE=";
sha256 = "sha256-gZko9eR1yM4NWX5wUlj7GQ+A/KflYYVojR595VhmMzc=";
};
propagatedBuildInputs = lib.optionals (!isPy3k) [ funcsigs ];