mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-13 11:52:45 +02:00
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{
|
|
description = "Application packaged using poetry2nix";
|
|
|
|
inputs = {
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
poetry2nix = {
|
|
url = "github:fusion44/poetry2nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
flake-utils,
|
|
poetry2nix,
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (system: let
|
|
# see https://github.com/nix-community/poetry2nix/tree/master#api for more functions and examples.
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
inherit (poetry2nix.lib.mkPoetry2Nix {inherit pkgs;}) mkPoetryApplication;
|
|
in {
|
|
packages = {
|
|
myapp = mkPoetryApplication {projectDir = self;};
|
|
default = self.packages.${system}.myapp;
|
|
};
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
inputsFrom = [self.packages.${system}.myapp];
|
|
packages = with pkgs; [
|
|
alejandra
|
|
claws # testing websockets: https://github.com/thehowl/claws
|
|
redis
|
|
poetry
|
|
pyright
|
|
sshpass
|
|
];
|
|
shellHook = ''
|
|
LD_LIBRARY_PATH="${pkgs.stdenv.cc.cc.lib}/lib";
|
|
'';
|
|
};
|
|
});
|
|
}
|