tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.types-psycopg2: init at 2.9.21.20
Martin Weinelt
2 years ago
abb1103e
dac52909
+35
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
types-psycopg2
default.nix
top-level
python-packages.nix
+33
pkgs/development/python-modules/types-psycopg2/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, buildPythonPackage
3
+
, fetchPypi
4
+
, setuptools
5
+
}:
6
+
7
+
buildPythonPackage rec {
8
+
pname = "types-psycopg2";
9
+
version = "2.9.21.20";
10
+
pyproject = true;
11
+
12
+
src = fetchPypi {
13
+
inherit pname version;
14
+
hash = "sha256-c7rqaJV1v1uxuRW3g/sFJARMYkKSiu7xrlqeMvB4DT0=";
15
+
};
16
+
17
+
nativeBuildInputs = [
18
+
setuptools
19
+
];
20
+
21
+
pythonImportsCheck = [
22
+
"psycopg2-stubs"
23
+
];
24
+
25
+
doCheck = false;
26
+
27
+
meta = with lib; {
28
+
description = "Typing stubs for psycopg2";
29
+
homepage = "https://github.com/python/typeshed";
30
+
license = licenses.asl20;
31
+
maintainers = with maintainers; [ ];
32
+
};
33
+
}
+2
pkgs/top-level/python-packages.nix
···
15399
15400
types-psutil = callPackage ../development/python-modules/types-psutil { };
15401
0
0
15402
types-pyopenssl = callPackage ../development/python-modules/types-pyopenssl { };
15403
15404
types-python-dateutil = callPackage ../development/python-modules/types-python-dateutil { };
···
15399
15400
types-psutil = callPackage ../development/python-modules/types-psutil { };
15401
15402
+
types-psycopg2 = callPackage ../development/python-modules/types-psycopg2 { };
15403
+
15404
types-pyopenssl = callPackage ../development/python-modules/types-pyopenssl { };
15405
15406
types-python-dateutil = callPackage ../development/python-modules/types-python-dateutil { };