567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
46 lines
891 B
Nix
46 lines
891 B
Nix
{
|
|
lib,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
psycopg2,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiopg";
|
|
version = "1.4.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aio-libs";
|
|
repo = "aiopg";
|
|
rev = "v${version}";
|
|
hash = "sha256-GD5lRSUjASTwBk5vEK8v3xD8eNyxpwSrO3HHvtwubmk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
psycopg2
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "psycopg2-binary" "psycopg2"
|
|
'';
|
|
|
|
# Tests requires a PostgreSQL Docker instance
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "aiopg" ];
|
|
|
|
meta = {
|
|
description = "Python library for accessing a PostgreSQL database";
|
|
homepage = "https://aiopg.readthedocs.io/";
|
|
license = with lib.licenses; [ bsd2 ];
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|