nixpkgs/pkgs/development/python-modules/towncrier/default.nix
2021-09-05 14:59:01 +02:00

47 lines
866 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy27
, click
, click-default-group
, incremental
, jinja2
, mock
, pytestCheckHook
, toml
, twisted
, git # shells out to git
}:
buildPythonPackage rec {
pname = "towncrier";
version = "21.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "6eed0bc924d72c98c000cb8a64de3bd566e5cb0d11032b73fcccf8a8f956ddfe";
};
propagatedBuildInputs = [
click
click-default-group
incremental
jinja2
toml
];
# zope.interface collision
doCheck = !isPy27;
checkInputs = [
git
mock
twisted
pytestCheckHook
];
pythonImportsCheck = [ "towncrier" ];
meta = with lib; {
description = "Utility to produce useful, summarised news files";
homepage = "https://github.com/twisted/towncrier/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}