26 lines
		
	
	
		
			653 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			653 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, buildPythonPackage, fetchPypi, dateutil, flask, pyjwt, werkzeug, pytest }:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "Flask-JWT-Extended";
 | 
						|
  version = "3.25.0";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "b2e4dba91661e4697b30269106386c2b29e416a00d9ff66b26c462edddc10078";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [ dateutil flask pyjwt werkzeug ];
 | 
						|
  checkInputs = [ pytest ];
 | 
						|
 | 
						|
  checkPhase = ''
 | 
						|
    pytest tests/
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with stdenv.lib; {
 | 
						|
    description = "JWT extension for Flask";
 | 
						|
    homepage = "https://flask-jwt-extended.readthedocs.io/";
 | 
						|
    license = licenses.mit;
 | 
						|
    maintainers = with maintainers; [ gerschtli ];
 | 
						|
  };
 | 
						|
}
 |