blob: a84e25d55e48c81a21b3d609e30703112ce86e29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "chameleon";
version = "4.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "malthe";
repo = "chameleon";
tag = version;
hash = "sha256-zCEM5yl8Y11FbexD7veS9bFJgm30L6fsTde59m2t1ec=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "chameleon" ];
meta = {
changelog = "https://github.com/malthe/chameleon/blob/${src.tag}/CHANGES.rst";
description = "Fast HTML/XML Template Compiler";
downloadPage = "https://github.com/malthe/chameleon";
homepage = "https://chameleon.readthedocs.io";
license = lib.licenses.bsd0;
maintainers = [ ];
};
}
|