2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
nose,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage {
|
|
|
|
version = "0.5.3-2016-09-28";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "tempita";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-10-09 19:29:22 +00:00
|
|
|
owner = "agramfort";
|
2020-04-24 23:36:52 +00:00
|
|
|
repo = "tempita";
|
|
|
|
rev = "47414a7c6e46a9a9afe78f0bce2ea299fa84d10";
|
|
|
|
sha256 = "0f33jjjs5rvp7ar2j6ggyfykcrsrn04jaqcq71qfvycf6b7nw3rn";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
|
|
|
|
meta = {
|
2023-10-09 19:29:22 +00:00
|
|
|
homepage = "https://github.com/agramfort/tempita";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Very small text templating language";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|