Files
nixpkgs/pkgs/development/python-modules/pypugjs/default.nix
T
2024-05-22 17:32:03 +02:00

55 lines
973 B
Nix

{
lib,
buildPythonPackage,
charset-normalizer,
django,
fetchFromGitHub,
jinja2,
mako,
nose,
pyramid,
pyramid-mako,
pytestCheckHook,
six,
tornado,
}:
buildPythonPackage rec {
pname = "pypugjs";
version = "5.9.12";
format = "setuptools";
src = fetchFromGitHub {
owner = "kakulukia";
repo = "pypugjs";
rev = "v${version}";
hash = "sha256-6tIhKCa8wg01gNFygCS6GdUHfbWBu7wOZeMkCExRR34=";
};
propagatedBuildInputs = [
six
charset-normalizer
];
nativeCheckInputs = [
django
jinja2
mako
nose
tornado
pyramid
pyramid-mako
pytestCheckHook
];
pytestCheckFlags = [ "pypugjs/testsuite" ];
meta = with lib; {
description = "PugJS syntax template adapter for Django, Jinja2, Mako and Tornado templates";
mainProgram = "pypugjs";
homepage = "https://github.com/kakulukia/pypugjs";
license = licenses.mit;
maintainers = with maintainers; [ lopsided98 ];
};
}