python3Packages.aiosql: 13.4 -> 14.1 (#469261)

This commit is contained in:
dotlambda
2025-12-10 00:55:59 +00:00
committed by GitHub
@@ -3,7 +3,9 @@
buildPythonPackage,
fetchFromGitHub,
pg8000,
psycopg,
pytest-asyncio,
pytest-postgresql,
pytestCheckHook,
pythonOlder,
setuptools,
@@ -14,21 +16,19 @@
buildPythonPackage rec {
pname = "aiosql";
version = "13.4";
version = "14.1";
pyproject = true;
disabled = pythonOlder "3.8";
outputs = [
"doc"
"out"
"doc"
];
src = fetchFromGitHub {
owner = "nackjicholson";
repo = "aiosql";
tag = version;
hash = "sha256-a3pRzcDMXdaDs0ub6k5bPRwnk+RCbxZ7ceIt8/fMSPg=";
hash = "sha256-BNsjVVyYRfp3sNdzQwHy9nQveP2AHfXGK10DLybat9I=";
};
sphinxRoot = "docs/source";
@@ -40,10 +40,11 @@ buildPythonPackage rec {
sphinxHook
];
propagatedBuildInputs = [ pg8000 ];
nativeCheckInputs = [
pg8000
psycopg
pytest-asyncio
pytest-postgresql
pytestCheckHook
];