bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
27 lines
552 B
Nix
27 lines
552 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
nose,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
version = "0.5.3-2016-09-28";
|
|
format = "setuptools";
|
|
pname = "tempita";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "agramfort";
|
|
repo = "tempita";
|
|
rev = "47414a7c6e46a9a9afe78f0bce2ea299fa84d10";
|
|
sha256 = "0f33jjjs5rvp7ar2j6ggyfykcrsrn04jaqcq71qfvycf6b7nw3rn";
|
|
};
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/agramfort/tempita";
|
|
description = "Very small text templating language";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|