-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3Packages.towncrier: init at 19.2.0
- Loading branch information
Jonathan Ringer
committed
Aug 4, 2020
1 parent
6a71386
commit 0a2bebf
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ lib, buildPythonPackage, fetchPypi, isPy27 | ||
, click | ||
, click-default-group | ||
, incremental | ||
, jinja2 | ||
, pytestCheckHook | ||
, toml | ||
, twisted | ||
, git # shells out to git | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "towncrier"; | ||
version = "19.2.0"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
sha256 = "15l1gb0hhi9pf3mhhb9vpc93w6w3hrih2ljmzbkgfb3dwqd1l9a8"; | ||
}; | ||
|
||
propagatedBuildInputs = [ | ||
click | ||
click-default-group | ||
incremental | ||
jinja2 | ||
toml | ||
]; | ||
|
||
# zope.interface collision | ||
doCheck = !isPy27; | ||
checkInputs = [ git 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; [ ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters