poetry2nix/tests/gobject-introspection/default.nix

11 lines
259 B
Nix
Raw Normal View History

2023-10-26 07:55:53 -04:00
{ pkgs, poetry2nix, python310 }:
poetry2nix.mkPoetryApplication {
python = python310;
projectDir = ./.;
pythonImportsCheck = [ "gobject_introspection_test" ];
buildInputs = [ pkgs.libnotify ];
nativeBuildInputs = [ pkgs.gobject-introspection ];
}