Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / chevron / default.nix
blob6a122ecf31e3a36ea113119fc1a17b8e85ea89f8
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , python
5 }:
7 buildPythonPackage {
8   pname = "chevron";
9   version = "0.13.1";
10   format = "setuptools";
12   # No tests available in the PyPI tarball
13   src = fetchFromGitHub {
14     owner = "noahmorrison";
15     repo = "chevron";
16     rev = "0.13.1";
17     sha256 = "0l1ik8dvi6bgyb3ym0w4ii9dh25nzy0x4yawf4zbcyvvcb6af470";
18   };
20   checkPhase = ''
21     ${python.interpreter} test_spec.py
22   '';
24   meta = with lib; {
25     homepage = "https://github.com/noahmorrison/chevron";
26     description = "A python implementation of the mustache templating language";
27     mainProgram = "chevron";
28     license = licenses.mit;
29     maintainers = with maintainers; [ dhkl ];
30   };