35 lines
		
	
	
		
			718 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			718 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, fetchPypi
 | 
						|
, buildPythonPackage
 | 
						|
, pytest
 | 
						|
, mock
 | 
						|
, isPy3k
 | 
						|
, pysqlite
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "SQLAlchemy";
 | 
						|
  version = "1.2.12";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "c5951d9ef1d5404ed04bae5a16b60a0779087378928f997a294d1229c6ca4d3e";
 | 
						|
  };
 | 
						|
 | 
						|
  checkInputs = [
 | 
						|
    pytest
 | 
						|
    mock
 | 
						|
#     Disable pytest_xdist tests for now, because our version seems to be too new.
 | 
						|
#     pytest_xdist
 | 
						|
  ] ++ lib.optional (!isPy3k) pysqlite;
 | 
						|
 | 
						|
  checkPhase = ''
 | 
						|
    py.test -k "not test_round_trip_direct_type_affinity"
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    homepage = http://www.sqlalchemy.org/;
 | 
						|
    description = "A Python SQL toolkit and Object Relational Mapper";
 | 
						|
    license = licenses.mit;
 | 
						|
  };
 | 
						|
} |