ps3-disc-dumper: 3.2.3 -> 4.2.5, .NET 6 -> 9 (#361506)
[NixPkgs.git] / pkgs / development / python-modules / aiopg / default.nix
bloba54ce5436b7a9fdfa074acb60c3202e99c5538d2
2   lib,
3   async-timeout,
4   buildPythonPackage,
5   fetchFromGitHub,
6   psycopg2,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "aiopg";
12   version = "1.4.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "aio-libs";
19     repo = pname;
20     rev = "v${version}";
21     hash = "sha256-GD5lRSUjASTwBk5vEK8v3xD8eNyxpwSrO3HHvtwubmk=";
22   };
24   propagatedBuildInputs = [
25     async-timeout
26     psycopg2
27   ];
29   postPatch = ''
30     substituteInPlace setup.py \
31       --replace "psycopg2-binary" "psycopg2"
32   '';
34   # Tests requires a PostgreSQL Docker instance
35   doCheck = false;
37   pythonImportsCheck = [ "aiopg" ];
39   meta = with lib; {
40     description = "Python library for accessing a PostgreSQL database";
41     homepage = "https://aiopg.readthedocs.io/";
42     license = with licenses; [ bsd2 ];
43     maintainers = with maintainers; [ fab ];
44   };