blob: d7e2c91357721ee6fb6f6ec4d3c50ad57f9ed128 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ 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 = "A very small text templating language";
license = lib.licenses.mit;
};
}
|