nixpkgs/pkgs/development/python-modules/towncrier/default.nix
Dmitry Bogatov bb8d0d2ae8
python3.pkgs.towncrier: fix run-time import error (#164977)
Co-authored-by: Dmitry Bogatov <git#v1@kaction.cc>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-27 12:02:12 +02:00

49 lines
894 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy27
, click
, click-default-group
, incremental
, jinja2
, mock
, pytestCheckHook
, toml
, twisted
, setuptools
, 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
setuptools
];
# 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; [ ];
};
}