python311Packages.kajiki: add input linetable

This commit is contained in:
Fabian Affolter 2023-05-19 08:03:54 +02:00
parent df473425ca
commit cd582d8d37

View file

@ -1,15 +1,18 @@
{ lib
, babel
, buildPythonPackage
, fetchFromGitHub
, babel
, pytz
, nine
, linetable
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "kajiki";
version = "0.9.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jackrosenthal";
@ -18,15 +21,24 @@ buildPythonPackage rec {
hash = "sha256-EbXe4Jh2IKAYw9GE0kFgKVv9c9uAOiFFYaMF8CGaOfg=";
};
propagatedBuildInputs = [ babel pytz nine ];
propagatedBuildInputs = [
linetable
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
babel
pytestCheckHook
];
pythonImportsCheck = [
"kajiki"
];
meta = with lib; {
description = "Kajiki provides fast well-formed XML templates";
description = "Module provides fast well-formed XML templates";
homepage = "https://github.com/nandoflorestan/kajiki";
changelog = "https://github.com/jackrosenthal/kajiki/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}