Flake: Added python package deal as dependency

This commit is contained in:
Qubasa
2023-11-06 17:35:09 +01:00
parent 766a5a2ae7
commit 9cb46bf1cd
4 changed files with 24 additions and 1 deletions

View File

@@ -35,6 +35,7 @@
, e2fsprogs
, mypy
, cntr
, deal
}:
let
@@ -56,6 +57,7 @@ let
git
gnupg
stdenv.cc
deal
];
# Optional dependencies for clan cli, we re-expose them here to make sure they all build.

View File

@@ -1,6 +1,6 @@
{ inputs, ... }:
{
perSystem = { self', pkgs, ... }: {
perSystem = { self', pkgs, system, ... }: {
devShells.clan-cli = pkgs.callPackage ./shell.nix {
inherit (self'.packages) clan-cli ui-assets nix-unit;
};
@@ -8,6 +8,7 @@
clan-cli = pkgs.python3.pkgs.callPackage ./default.nix {
inherit (self'.packages) ui-assets;
inherit (inputs) nixpkgs;
deal = inputs.luispkgs.legacyPackages.${system}.python3Packages.deal;
};
inherit (self'.packages.clan-cli) clan-openapi;
default = self'.packages.clan-cli;