mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 17:51:40 -05:00
10 lines
259 B
Nix
10 lines
259 B
Nix
{ pkgs, poetry2nix, python310 }:
|
|
|
|
poetry2nix.mkPoetryApplication {
|
|
python = python310;
|
|
projectDir = ./.;
|
|
pythonImportsCheck = [ "gobject_introspection_test" ];
|
|
|
|
buildInputs = [ pkgs.libnotify ];
|
|
nativeBuildInputs = [ pkgs.gobject-introspection ];
|
|
}
|