0
0
Fork 0
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:
OTABI Tomoya 2025-04-28 09:10:13 +09:00 committed by GitHub
commit 917ee0af83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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";