From 45c6ae6dd37f9250614d502e3cfc1ffcb015050c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Wed, 20 Nov 2024 18:59:17 +0000 Subject: [PATCH] nix: add poetry to the impure shell This shouldn't be used to manage dependencies in a Nix devshell, but can be handy to update `poetry.lock`. --- nix/impure-shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/impure-shell.nix b/nix/impure-shell.nix index 92e14bc3..a13fd711 100644 --- a/nix/impure-shell.nix +++ b/nix/impure-shell.nix @@ -9,6 +9,7 @@ cudaPackages, openssl, pkg-config, + poetry, protobuf, python3, pyright, @@ -28,6 +29,7 @@ mkShell { black isort pkg-config + poetry (rust-bin.stable.latest.default.override { extensions = [ "rust-analyzer"