poetry2nix/tests/gobject-introspection/default.nix
2023-10-26 08:46:31 -04:00

10 lines
259 B
Nix

{ pkgs, poetry2nix, python310 }:
poetry2nix.mkPoetryApplication {
python = python310;
projectDir = ./.;
pythonImportsCheck = [ "gobject_introspection_test" ];
buildInputs = [ pkgs.libnotify ];
nativeBuildInputs = [ pkgs.gobject-introspection ];
}