mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-07 02:01:40 -05:00
11 lines
259 B
Nix
11 lines
259 B
Nix
![]() |
{ pkgs, poetry2nix, python310 }:
|
||
|
|
||
|
poetry2nix.mkPoetryApplication {
|
||
|
python = python310;
|
||
|
projectDir = ./.;
|
||
|
pythonImportsCheck = [ "gobject_introspection_test" ];
|
||
|
|
||
|
buildInputs = [ pkgs.libnotify ];
|
||
|
nativeBuildInputs = [ pkgs.gobject-introspection ];
|
||
|
}
|