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


           
                 
              
          

             



                        
                    
                       
 
                    



                          
                                                                   

    



                       







                           
                

            
 
                                                                        
               
                                 
     
 



                                        

                                                                                                 
                                                               



                                             
{ lib
, fetchFromGitHub
, buildPythonPackage
, poetry
, docopt
, easywatch
, jinja2
, pytestCheckHook
, pytest-check
, markdown
, testVersion
, staticjinja
}:

buildPythonPackage rec {
  pname = "staticjinja";
  version = "3.0.1";
  format = "pyproject";

  # No tests in pypi
  src = fetchFromGitHub {
    owner = "staticjinja";
    repo = pname;
    rev = version;
    sha256 = "sha256-W4q0vG8Kl2gCmA8UnUbdiGRtghhdnWxIJXFIIa6BogA=";
  };

  nativeBuildInputs = [
    poetry
  ];

  propagatedBuildInputs = [
    jinja2
    docopt
    easywatch
  ];

  checkInputs = [
    pytestCheckHook
    pytest-check
    markdown
  ];

  # The tests need to find and call the installed staticjinja executable
  preCheck = ''
    export PATH="$PATH:$out/bin";
  '';

  passthru.tests.version = testVersion {
    package = staticjinja;
  };

  meta = with lib; {
    description = "A library and cli tool that makes it easy to build static sites using Jinja2";
    homepage = "https://staticjinja.readthedocs.io/en/latest/";
    license = licenses.mit;
    maintainers = with maintainers; [ fgaz ];
  };
}