mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python312Packages.pypugjs: 5.10.1 -> 5.12.0 (#394934)
This commit is contained in:
commit
917ee0af83
1 changed files with 17 additions and 4 deletions
|
@ -6,6 +6,7 @@
|
|||
fetchFromGitHub,
|
||||
jinja2,
|
||||
mako,
|
||||
poetry-core,
|
||||
pyramid,
|
||||
pyramid-mako,
|
||||
pytestCheckHook,
|
||||
|
@ -15,21 +16,29 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypugjs";
|
||||
version = "5.10.1";
|
||||
format = "setuptools";
|
||||
version = "5.12.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kakulukia";
|
||||
repo = "pypugjs";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-W+EVNxT2OimNENHe4lJDn6Wm1EbBysGuCD3/Wkdew/U=";
|
||||
hash = "sha256-JHZzyEilCjpZFIrl5kk1oJ4C/vgQTfVoRRGBK+DuHAE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
six
|
||||
charset-normalizer
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"charset-normalizer"
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
django
|
||||
jinja2
|
||||
|
@ -42,6 +51,10 @@ buildPythonPackage rec {
|
|||
|
||||
pytestCheckFlags = [ "pypugjs/testsuite" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pypugjs"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "PugJS syntax template adapter for Django, Jinja2, Mako and Tornado templates";
|
||||
mainProgram = "pypugjs";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue