25 lines
		
	
	
		
			520 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			520 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright 1999-2021 Gentoo Authors
 | 
						|
# Distributed under the terms of the GNU General Public License v2
 | 
						|
 | 
						|
EAPI="7"
 | 
						|
 | 
						|
PYTHON_COMPAT=( python3_8 )
 | 
						|
DISTUTILS_USE_SETUPTOOLS="no"
 | 
						|
 | 
						|
inherit distutils-r1
 | 
						|
 | 
						|
DESCRIPTION="asyncio bridge to the standard sqlite3 module"
 | 
						|
HOMEPAGE="https://github.com/jreese/aiosqlite"
 | 
						|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 | 
						|
 | 
						|
LICENSE="Apache-2.0"
 | 
						|
SLOT="0"
 | 
						|
KEYWORDS="~amd64 ~x86"
 | 
						|
 | 
						|
# lacks dev-python/aiounittest
 | 
						|
RESTRICT="test"
 | 
						|
 | 
						|
DOCS=( CHANGELOG.md README.rst )
 | 
						|
 | 
						|
distutils_enable_sphinx docs
 |