fix devshell: Strawberry CLI dependencies
continuous-integration/drone/push Build is failing Details

pull/93/head
Alexander 2024-02-13 01:47:58 +04:00
parent b4fe79fdce
commit ad6514658d
1 changed files with 20 additions and 23 deletions

View File

@ -7,9 +7,8 @@
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
pythonPackages = pkgs.python310Packages;
selfprivacy-graphql-api = pkgs.callPackage ./default.nix { selfprivacy-graphql-api = pkgs.callPackage ./default.nix {
inherit pythonPackages; pythonPackages = pkgs.python310Packages;
rev = self.shortRev or self.dirtyShortRev or "dirty"; rev = self.shortRev or self.dirtyShortRev or "dirty";
}; };
python = self.packages.${system}.default.pythonModule; python = self.packages.${system}.default.pythonModule;
@ -20,7 +19,14 @@
pytest pytest
pytest-datadir pytest-datadir
pytest-mock pytest-mock
])); black
mypy
pylsp-mypy
python-lsp-black
python-lsp-server
typer # for strawberry
] ++ strawberry-graphql.optional-dependencies.cli));
vmtest-src-dir = "/root/source"; vmtest-src-dir = "/root/source";
shellMOTD = '' shellMOTD = ''
Welcome to SP API development shell! Welcome to SP API development shell!
@ -72,16 +78,7 @@
import ./nixos/module.nix self.packages.${system}.default; import ./nixos/module.nix self.packages.${system}.default;
devShells.${system}.default = pkgs.mkShell { devShells.${system}.default = pkgs.mkShell {
name = "SP API dev shell"; name = "SP API dev shell";
packages = with pythonPackages; packages = with pkgs; [
[
black
mypy
pylsp-mypy
python-lsp-black
python-lsp-server
] ++
(with pkgs;
[
nixpkgs-fmt nixpkgs-fmt
rclone rclone
redis redis
@ -91,7 +88,7 @@
self.checks.x86_64-linux.default.driverInteractive self.checks.x86_64-linux.default.driverInteractive
# the target API application python environment # the target API application python environment
python-env python-env
]); ];
shellHook = '' shellHook = ''
# envs set with export and as attributes are treated differently. # envs set with export and as attributes are treated differently.
# for example. printenv <Name> will not fetch the value of an attribute. # for example. printenv <Name> will not fetch the value of an attribute.