tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.pinecone-client: format with nixfmt
Fabian Affolter
2 years ago
8510fcad
7e7c30cd
+20
-25
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pinecone-client
default.nix
+20
-25
pkgs/development/python-modules/pinecone-client/default.nix
···
1
-
{ lib
2
-
, buildPythonPackage
3
-
, dnspython
4
-
, fetchPypi
5
-
, loguru
6
-
, numpy
7
-
, poetry-core
8
-
, python-dateutil
9
-
, pythonOlder
10
-
, pythonRelaxDepsHook
11
-
, pyyaml
12
-
, requests
13
-
, setuptools
14
-
, tqdm
15
-
, typing-extensions
16
-
, urllib3
0
17
}:
18
19
buildPythonPackage rec {
···
29
hash = "sha256-QgYqYo56lB0Lwku4r7Am861NJkzwbWpiej3lgyFK494=";
30
};
31
32
-
pythonRelaxDeps = [
33
-
"urllib3"
34
-
];
35
36
-
nativeBuildInputs = [
37
-
pythonRelaxDepsHook
38
-
];
39
40
build-system = [
41
setuptools
···
57
# Tests require network access
58
doCheck = false;
59
60
-
pythonImportsCheck = [
61
-
"pinecone"
62
-
];
63
64
meta = with lib; {
65
description = "The Pinecone python client";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
dnspython,
5
+
fetchPypi,
6
+
loguru,
7
+
numpy,
8
+
poetry-core,
9
+
python-dateutil,
10
+
pythonOlder,
11
+
pythonRelaxDepsHook,
12
+
pyyaml,
13
+
requests,
14
+
setuptools,
15
+
tqdm,
16
+
typing-extensions,
17
+
urllib3,
18
}:
19
20
buildPythonPackage rec {
···
30
hash = "sha256-QgYqYo56lB0Lwku4r7Am861NJkzwbWpiej3lgyFK494=";
31
};
32
33
+
pythonRelaxDeps = [ "urllib3" ];
0
0
34
35
+
nativeBuildInputs = [ pythonRelaxDepsHook ];
0
0
36
37
build-system = [
38
setuptools
···
54
# Tests require network access
55
doCheck = false;
56
57
+
pythonImportsCheck = [ "pinecone" ];
0
0
58
59
meta = with lib; {
60
description = "The Pinecone python client";