Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pinecone-client / default.nix
blob62fb96fb31aa8aef6928d24c6233f61608fb0a6b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , pyyaml
6 , python-dateutil
7 , urllib3
8 , tqdm
9 , dnspython
10 , requests
11 , typing-extensions
12 , loguru
14 buildPythonPackage rec {
15   pname = "pinecone-client";
16   version = "2.2.4";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-LBzB1mSLK+ZulE2y/6WRZqN7kWTRE1rVJdnNix4pgWg=";
21   };
23   propagatedBuildInputs = [
24     numpy
25     pyyaml
26     python-dateutil
27     urllib3
28     tqdm
29     dnspython
30     requests
31     typing-extensions
32     loguru
33   ];
35   doCheck = false;
37   meta = with lib; {
38     homepage = "https://www.pinecone.io/";
39     description = "The Pinecone python client";
40     license = licenses.mit;
41     maintainers = with maintainers; [happysalada];
42   };