1{ lib, buildPythonPackage, fetchFromGitHub, nose }:
2
3buildPythonPackage {
4 version = "0.5.3-2016-09-28";
5 pname = "tempita";
6
7 src = fetchFromGitHub {
8 owner = "agramfort";
9 repo = "tempita";
10 rev = "47414a7c6e46a9a9afe78f0bce2ea299fa84d10";
11 sha256 = "0f33jjjs5rvp7ar2j6ggyfykcrsrn04jaqcq71qfvycf6b7nw3rn";
12 };
13
14 buildInputs = [ nose ];
15
16 meta = {
17 homepage = "https://github.com/agramfort/tempita";
18 description = "A very small text templating language";
19 license = lib.licenses.mit;
20 };
21}