mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-17 12:26:11 +02:00
chore: update deps and flake file
This commit is contained in:
parent
d3902e1c2b
commit
149bd30b15
6 changed files with 3360 additions and 1940 deletions
|
|
@ -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
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue