3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.chevron: init at 0.13.1

A Python implementation of mustache

(cherry picked from commit 7033cf04dd)
This commit is contained in:
David Leung 2019-04-07 21:11:01 +08:00 committed by Joachim Fasting
parent dd45b02d80
commit 05a440b1bb
No known key found for this signature in database
GPG key ID: 5C204DF675C90294
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, python
}:
buildPythonPackage rec {
pname = "chevron";
version = "0.13.1";
# No tests available in the PyPI tarball
src = fetchFromGitHub {
owner = "noahmorrison";
repo = "chevron";
rev = "0.13.1";
sha256 = "0l1ik8dvi6bgyb3ym0w4ii9dh25nzy0x4yawf4zbcyvvcb6af470";
};
checkPhase = ''
${python.interpreter} test_spec.py
'';
meta = with lib; {
homepage = https://github.com/noahmorrison/chevron;
description = "A python implementation of the mustache templating language";
license = licenses.mit;
maintainers = with maintainers; [ dhkl ];
};
}

View file

@ -1135,6 +1135,8 @@ in {
cheroot = callPackage ../development/python-modules/cheroot {};
chevron = callPackage ../development/python-modules/chevron {};
cli-helpers = callPackage ../development/python-modules/cli-helpers {};
cmarkgfm = callPackage ../development/python-modules/cmarkgfm { };