copier: init at 7.0.1

This commit is contained in:
Jonathan Ringer 2021-11-11 10:49:51 -08:00 committed by Artturin
parent a3ff34620d
commit 6a17f834d8
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,51 @@
{ lib, git, python3, fetchFromGitHub }:
python3.pkgs.buildPythonApplication rec {
pname = "copier";
version = "7.0.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "copier-org";
repo = "copier";
rev = "v${version}";
sha256 = "sha256-8lTvyyKfAkvnUvw3e+r9C/49QASR8Zeokm509jxGK2g=";
};
POETRY_DYNAMIC_VERSIONING_BYPASS = version;
nativeBuildInputs = [
python3.pkgs.poetry-core
python3.pkgs.poetry-dynamic-versioning
];
propagatedBuildInputs = with python3.pkgs; [
colorama
dunamai
iteration-utilities
jinja2
jinja2-ansible-filters
mkdocs-material
mkdocs-mermaid2-plugin
mkdocstrings
packaging
pathspec
plumbum
pydantic
pygments
pyyaml
pyyaml-include
questionary
];
makeWrapperArgs = [
"--suffix PATH : ${lib.makeBinPath [ git ] }"
];
meta = with lib; {
description = "Library and command-line utility for rendering projects templates";
homepage = "https://copier.readthedocs.io";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

View file

@ -1349,6 +1349,8 @@ with pkgs;
dwarfs = callPackage ../tools/filesystems/dwarfs { }; dwarfs = callPackage ../tools/filesystems/dwarfs { };
copier = callPackage ../tools/misc/copier { };
gamemode = callPackage ../tools/games/gamemode { gamemode = callPackage ../tools/games/gamemode {
libgamemode32 = pkgsi686Linux.gamemode.lib; libgamemode32 = pkgsi686Linux.gamemode.lib;
}; };