summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyramid_chameleon/default.nix
blob: 377317049dc8ac8eb9c8d8ace9b416aa0e0654b7 (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, chameleon
, pyramid
, zope_interface
, setuptools
}:

buildPythonPackage rec {
  pname = "pyramid_chameleon";
  version = "0.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d176792a50eb015d7865b44bd9b24a7bd0489fa9a5cebbd17b9e05048cef9017";
  };

  patches = [
    # https://github.com/Pylons/pyramid_chameleon/pull/25
    ./test-renderers-pyramid-import.patch
  ];

  propagatedBuildInputs = [ chameleon pyramid zope_interface setuptools ];

  pythonImportsCheck = [ "pyramid_chameleon" ];

  meta = with lib; {
    description = "Chameleon template compiler for pyramid";
    homepage = "https://github.com/Pylons/pyramid_chameleon";
    license = licenses.bsd0;
    maintainers = with maintainers; [ domenkozar ];
  };
}