mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
python3Packages.towncrier: init at 19.2.0
This commit is contained in:
parent
6a71386895
commit
0a2bebf78d
40
pkgs/development/python-modules/towncrier/default.nix
Normal file
40
pkgs/development/python-modules/towncrier/default.nix
Normal file
@ -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; [ ];
|
||||
};
|
||||
}
|
@ -1559,6 +1559,10 @@ in {
|
||||
tokenizers = disabledIf (!isPy3k)
|
||||
(toPythonModule (callPackage ../development/python-modules/tokenizers { }));
|
||||
|
||||
towncrier = callPackage ../development/python-modules/towncrier {
|
||||
inherit (pkgs) git;
|
||||
};
|
||||
|
||||
transformers = callPackage ../development/python-modules/transformers { };
|
||||
|
||||
transforms3d = callPackage ../development/python-modules/transforms3d { };
|
||||
|
Loading…
Reference in New Issue
Block a user