2017-12-17 23:02:18 +01:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, nose }:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
buildPythonPackage {
|
2017-12-17 23:02:18 +01:00
|
|
|
version = "0.5.3-2016-09-28";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tempita";
|
2017-12-17 23:02:18 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gjhiggins";
|
|
|
|
repo = "tempita";
|
|
|
|
rev = "47414a7c6e46a9a9afe78f0bce2ea299fa84d10";
|
|
|
|
sha256 = "0f33jjjs5rvp7ar2j6ggyfykcrsrn04jaqcq71qfvycf6b7nw3rn";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/gjhiggins/tempita";
|
2017-12-17 23:02:18 +01:00
|
|
|
description = "A very small text templating language";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|