24 lines
		
	
	
		
			579 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			579 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, buildPythonPackage, fetchPypi, pytest, aiohttp }:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "pytest-aiohttp";
 | 
						|
  version = "0.3.0";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [ pytest aiohttp ];
 | 
						|
 | 
						|
  # There are no tests
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  meta = with stdenv.lib; {
 | 
						|
    homepage = https://github.com/aio-libs/pytest-aiohttp/;
 | 
						|
    description = "Pytest plugin for aiohttp support";
 | 
						|
    license = licenses.asl20;
 | 
						|
    maintainers = with maintainers; [ dotlambda ];
 | 
						|
  };
 | 
						|
}
 |