python311Packages.types-psycopg2: init at 2.9.21.20

This commit is contained in:
Martin Weinelt 2023-12-24 15:53:49 +01:00
parent dac52909e8
commit abb1103e74
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "types-psycopg2";
version = "2.9.21.20";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-c7rqaJV1v1uxuRW3g/sFJARMYkKSiu7xrlqeMvB4DT0=";
};
nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [
"psycopg2-stubs"
];
doCheck = false;
meta = with lib; {
description = "Typing stubs for psycopg2";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}

View File

@ -15399,6 +15399,8 @@ self: super: with self; {
types-psutil = callPackage ../development/python-modules/types-psutil { };
types-psycopg2 = callPackage ../development/python-modules/types-psycopg2 { };
types-pyopenssl = callPackage ../development/python-modules/types-pyopenssl { };
types-python-dateutil = callPackage ../development/python-modules/types-python-dateutil { };