From a35d280da9bb3e7837a9f33d5ae8d8606e18c29d Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Mon, 23 Mar 2026 06:51:08 +0100 Subject: [PATCH] python3Packages.kalshi-python: fix build --- .../python-modules/kalshi-python/default.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/kalshi-python/default.nix b/pkgs/development/python-modules/kalshi-python/default.nix index e7317c3e616e..319767309e90 100644 --- a/pkgs/development/python-modules/kalshi-python/default.nix +++ b/pkgs/development/python-modules/kalshi-python/default.nix @@ -4,10 +4,14 @@ fetchPypi, setuptools, pytestCheckHook, - urllib3, certifi, + cryptography, + lazy-imports, + pydantic, python-dateutil, six, + typing-extensions, + urllib3, }: buildPythonPackage rec { @@ -22,10 +26,14 @@ buildPythonPackage rec { }; dependencies = [ - urllib3 certifi + cryptography + lazy-imports + pydantic python-dateutil six + typing-extensions + urllib3 ]; build-system = [ setuptools ];