Merge pull request #212603 from amesgen/init-scriv
scriv: init at 1.2.0
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchPypi
|
||||
, pandoc
|
||||
, git
|
||||
, scriv
|
||||
, testers
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "scriv";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-u2HDD+pzFYpNGMKLu1eCHDCCRWg++w2Je9ReSnhWtHI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
attrs
|
||||
click
|
||||
click-log
|
||||
jinja2
|
||||
requests
|
||||
] ++ lib.optionals (python3.pythonOlder "3.11") [
|
||||
tomli
|
||||
];
|
||||
|
||||
nativeCheckInputs = with python3.pkgs; [
|
||||
pytestCheckHook
|
||||
coverage
|
||||
freezegun
|
||||
pudb
|
||||
pytest-mock
|
||||
responses
|
||||
pyyaml
|
||||
|
||||
pandoc
|
||||
git
|
||||
];
|
||||
disabledTests = [
|
||||
# assumes we have checked out the full repo (including remotes)
|
||||
"test_real_get_github_repos"
|
||||
];
|
||||
|
||||
passthru.tests = {
|
||||
version = testers.testVersion { package = scriv; };
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Command-line tool for helping developers maintain useful changelogs.";
|
||||
homepage = "https://github.com/nedbat/scriv";
|
||||
changelog = "https://github.com/nedbat/scriv/releases/tag/${version}";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ amesgen ];
|
||||
};
|
||||
}
|
||||
@@ -2482,6 +2482,8 @@ with pkgs;
|
||||
|
||||
sakura = callPackage ../applications/terminal-emulators/sakura { };
|
||||
|
||||
scriv = callPackage ../applications/version-management/scriv { };
|
||||
|
||||
st = callPackage ../applications/terminal-emulators/st {
|
||||
conf = config.st.conf or null;
|
||||
patches = config.st.patches or [];
|
||||
|
||||
Reference in New Issue
Block a user