Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-mysql-connector/versions
		
			
				
	
	
		
			34 lines
		
	
	
		
			908 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			908 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, buildPythonPackage, fetchFromGitHub
 | 
						|
, protobuf
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "mysql-connector";
 | 
						|
  version = "8.0.13";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "mysql";
 | 
						|
    repo = "mysql-connector-python";
 | 
						|
    rev = version;
 | 
						|
    sha256 = "1qb6m3cp6zxmr49bp6g5g5b75yszgac1h26i2hza61mrvd235688";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [ protobuf ];
 | 
						|
 | 
						|
  # Tests are failing (TODO: unknown reason)
 | 
						|
  # TypeError: __init__() missing 1 required positional argument: 'string'
 | 
						|
  # But the library should be working as expected.
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "A MySQL driver";
 | 
						|
    longDescription = ''
 | 
						|
      A MySQL driver that does not depend on MySQL C client libraries and
 | 
						|
      implements the DB API v2.0 specification.
 | 
						|
    '';
 | 
						|
    homepage = https://github.com/mysql/mysql-connector-python;
 | 
						|
    license = [ lib.licenses.gpl2 ];
 | 
						|
    maintainers = with lib.maintainers; [ primeos ];
 | 
						|
  };
 | 
						|
}
 |