63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
click,
|
||
|
fetchPypi,
|
||
|
git, # shells out to git
|
||
|
hatchling,
|
||
|
importlib-resources,
|
||
|
incremental,
|
||
|
jinja2,
|
||
|
mock,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
tomli,
|
||
|
twisted,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "towncrier";
|
||
|
version = "24.8.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-ATQj7n7tECsvOTwofSLZX2bxo+oQpLqoLSmAAafxivM=";
|
||
|
};
|
||
|
|
||
|
build-system = [ hatchling ];
|
||
|
|
||
|
dependencies =
|
||
|
[
|
||
|
click
|
||
|
incremental
|
||
|
jinja2
|
||
|
]
|
||
|
++ lib.optionals (pythonOlder "3.10") [ importlib-resources ]
|
||
|
++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
||
|
|
||
|
preCheck = ''
|
||
|
export PATH=$out/bin:$PATH
|
||
|
'';
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
git
|
||
|
mock
|
||
|
twisted
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "towncrier" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Utility to produce useful, summarised news files";
|
||
|
homepage = "https://github.com/twisted/towncrier/";
|
||
|
changelog = "https://github.com/twisted/towncrier/blob/${version}/NEWS.rst";
|
||
|
license = licenses.mit;
|
||
|
maintainers = [ ];
|
||
|
mainProgram = "towncrier";
|
||
|
};
|
||
|
}
|