Merge pull request #207186 from r-ryantm/auto-update/python310Packages.towncrier

python310Packages.towncrier: 22.8.0 -> 22.12.0

authored by Fabian Affolter and committed by GitHub cb8e7a05 108f65bb

+14 -8
+14 -8
pkgs/development/python-modules/towncrier/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy27 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 2 5 , click 3 6 , click-default-group 4 7 , incremental ··· 13 16 14 17 buildPythonPackage rec { 15 18 pname = "towncrier"; 16 - version = "22.8.0"; 19 + version = "22.12.0"; 20 + format = "setuptools"; 21 + 22 + disabled = pythonOlder "3.7"; 17 23 18 24 src = fetchPypi { 19 25 inherit pname version; 20 - sha256 = "sha256-fTg5sDOFm0X7Vd+Ct0z9cCQxkzwMyfKHpafqPgXQQss="; 26 + hash = "sha256-nEnX519kaprqAq6QTAvBY5yP0UoBKS0rEjuNMHVkA00="; 21 27 }; 22 28 23 29 propagatedBuildInputs = [ ··· 29 35 setuptools 30 36 ]; 31 37 32 - # zope.interface collision 33 - doCheck = !isPy27; 34 - 35 38 preCheck = '' 36 39 export PATH=$out/bin:$PATH 37 40 ''; ··· 43 46 pytestCheckHook 44 47 ]; 45 48 46 - pythonImportsCheck = [ "towncrier" ]; 49 + pythonImportsCheck = [ 50 + "towncrier" 51 + ]; 47 52 48 53 meta = with lib; { 49 54 description = "Utility to produce useful, summarised news files"; 50 55 homepage = "https://github.com/twisted/towncrier/"; 56 + changelog = "https://github.com/twisted/towncrier/blob/${version}/NEWS.rst"; 51 57 license = licenses.mit; 52 - maintainers = with maintainers; [ ]; 58 + maintainers = with maintainers; [ ]; 53 59 }; 54 60 }