mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 18:23:44 +00:00
python311Packages.types-psycopg2: init at 2.9.21.20
This commit is contained in:
parent
dac52909e8
commit
abb1103e74
33
pkgs/development/python-modules/types-psycopg2/default.nix
Normal file
33
pkgs/development/python-modules/types-psycopg2/default.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user