Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.pinecone-client: format with nixfmt

+20 -25
+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 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, 17 18 }: 18 19 19 20 buildPythonPackage rec { ··· 29 30 hash = "sha256-QgYqYo56lB0Lwku4r7Am861NJkzwbWpiej3lgyFK494="; 30 31 }; 31 32 32 - pythonRelaxDeps = [ 33 - "urllib3" 34 - ]; 33 + pythonRelaxDeps = [ "urllib3" ]; 35 34 36 - nativeBuildInputs = [ 37 - pythonRelaxDepsHook 38 - ]; 35 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 39 36 40 37 build-system = [ 41 38 setuptools ··· 57 54 # Tests require network access 58 55 doCheck = false; 59 56 60 - pythonImportsCheck = [ 61 - "pinecone" 62 - ]; 57 + pythonImportsCheck = [ "pinecone" ]; 63 58 64 59 meta = with lib; { 65 60 description = "The Pinecone python client";