python310Packages.aiopg: 1.3.5 -> 1.4.0

This commit is contained in:
Fabian Affolter 2022-10-27 19:02:12 +02:00
parent e3a905b73f
commit 0db2db3577

View file

@ -8,14 +8,16 @@
buildPythonPackage rec {
pname = "aiopg";
version = "1.3.5";
disabled = pythonOlder "3.6";
version = "1.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "aio-libs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-ZHfwuDtQm7SlLX3sAoYONgCIWnafOj/L8bXjAdwYDKI=";
hash = "sha256-GD5lRSUjASTwBk5vEK8v3xD8eNyxpwSrO3HHvtwubmk=";
};
propagatedBuildInputs = [
@ -31,7 +33,9 @@ buildPythonPackage rec {
# Tests requires a PostgreSQL Docker instance
doCheck = false;
pythonImportsCheck = [ "aiopg" ];
pythonImportsCheck = [
"aiopg"
];
meta = with lib; {
description = "Python library for accessing a PostgreSQL database";