Merge pull request #114217 from fabaff/bump-aiosqlite

python3Packages.aiosqlite: 0.16.0 -> 0.17.0

authored by

Mario Rodas and committed by
GitHub
6fdb112d f8e62134

+4 -2
+4 -2
pkgs/development/python-modules/aiosqlite/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "aiosqlite"; 12 - version = "0.16.0"; 12 + version = "0.17.0"; 13 13 disabled = isPy27; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "1a0fjmlvadyzsml10g5p1qif7192k0swy5zwjp8v48y5zc3yy56h"; 17 + sha256 = "sha256-8OaswkvEhkFJJnrIL7Rt+zvkRV+Z/iHfgmCcxua67lE="; 18 18 }; 19 19 20 20 checkInputs = [ ··· 25 25 26 26 # tests are not pick-up automatically by the hook 27 27 pytestFlagsArray = [ "aiosqlite/tests/*.py" ]; 28 + 29 + pythonImportsCheck = [ "aiosqlite" ]; 28 30 29 31 meta = with lib; { 30 32 description = "Asyncio bridge to the standard sqlite3 module";