python3Packages.aiosqlite: 0.16.0 -> 0.17.0

This commit is contained in:
Fabian Affolter 2021-02-24 09:43:55 +01:00
parent b1efbc6aa3
commit 18ede21b30

View File

@ -9,12 +9,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiosqlite"; pname = "aiosqlite";
version = "0.16.0"; version = "0.17.0";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1a0fjmlvadyzsml10g5p1qif7192k0swy5zwjp8v48y5zc3yy56h"; sha256 = "sha256-8OaswkvEhkFJJnrIL7Rt+zvkRV+Z/iHfgmCcxua67lE=";
}; };
checkInputs = [ checkInputs = [
@ -26,6 +26,8 @@ buildPythonPackage rec {
# tests are not pick-up automatically by the hook # tests are not pick-up automatically by the hook
pytestFlagsArray = [ "aiosqlite/tests/*.py" ]; pytestFlagsArray = [ "aiosqlite/tests/*.py" ];
pythonImportsCheck = [ "aiosqlite" ];
meta = with lib; { meta = with lib; {
description = "Asyncio bridge to the standard sqlite3 module"; description = "Asyncio bridge to the standard sqlite3 module";
homepage = "https://github.com/jreese/aiosqlite"; homepage = "https://github.com/jreese/aiosqlite";