python3Packages.towncrier: 19.9.0 -> 21.3.0

This commit is contained in:
Martin Weinelt 2021-08-26 21:38:10 +02:00
parent 7a157c2cce
commit a277bb28a6

View File

@ -3,6 +3,7 @@
, click-default-group
, incremental
, jinja2
, mock
, pytestCheckHook
, toml
, twisted
@ -11,11 +12,11 @@
buildPythonPackage rec {
pname = "towncrier";
version = "19.9.0";
version = "21.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "19916889879353a8863f3de8cb1ef19b305a0b5cfd9d36159d76ca2fef08e9aa";
sha256 = "6eed0bc924d72c98c000cb8a64de3bd566e5cb0d11032b73fcccf8a8f956ddfe";
};
propagatedBuildInputs = [
@ -28,7 +29,12 @@ buildPythonPackage rec {
# zope.interface collision
doCheck = !isPy27;
checkInputs = [ git twisted pytestCheckHook ];
checkInputs = [
git
mock
twisted
pytestCheckHook
];
pythonImportsCheck = [ "towncrier" ];
meta = with lib; {