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