summary refs log blame commit diff
path: root/pkgs/development/python-modules/Mako/default.nix
blob: d7b350b9f96bfb15dbfe9048d094b547fabe35d8 (plain) (tree)
1
2
3
4
5
6
7
8

                    
             
           
        

            
            




               
      
                 



                        
                    
 

                               

                          
                                                                   

    













                                     
 








                                                   
 




                                       
                    
                                                   




                                                                          
    
 
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, isPyPy

# propagates
, markupsafe

# extras: Babel
, Babel

# tests
, mock
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "Mako";
  version = "1.2.0";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-mnx+kiuH2zaGIQz0nV12cDOkHUAQsoTnR2gskr3dizk=";
  };

  propagatedBuildInputs = [
    markupsafe
  ];

  passthru.extras-require = {
    babel = [
      Babel
    ];
  };

  checkInputs = [
    pytestCheckHook
    mock
  ] ++ passthru.extras-require.babel;

  disabledTests = lib.optionals isPyPy [
    # https://github.com/sqlalchemy/mako/issues/315
    "test_alternating_file_names"
    # https://github.com/sqlalchemy/mako/issues/238
    "test_file_success"
    "test_stdin_success"
    # fails on pypy2.7
    "test_bytestring_passthru"
  ];

  disabledTestPaths = [
    # lingua dependency is not packaged
    "test/ext/test_linguaplugin.py"
  ];

  meta = with lib; {
    description = "Super-fast templating language";
    homepage = "https://www.makotemplates.org/";
    changelog = "https://docs.makotemplates.org/en/latest/changelog.html";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ domenkozar ];
  };
}