chore: update deps and flake file

This commit is contained in:
fusion44 2024-12-16 15:20:46 +01:00
parent d3902e1c2b
commit 149bd30b15
No known key found for this signature in database
6 changed files with 3360 additions and 1940 deletions

View file

@ -6,15 +6,18 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system: let
pkgs = import nixpkgs {inherit system;};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
(python3.withPackages (ps: [ ps.grpcio ps.grpcio-tools ]))
(python3.withPackages (ps: [ps.grpcio ps.grpcio-tools]))
curl
jq
];