Add `pname` and `version` to created app.

pull/10/head
Joshua Potter 2023-11-28 05:52:36 -07:00
parent 754ebf0c28
commit b74e72d092
1 changed files with 6 additions and 0 deletions

View File

@ -67,6 +67,12 @@
app = mkPoetryApplication {
projectDir = ./.;
overrides = poetry2nix-overrides;
# Use wheels rather than sdist as much as possible
# preferWheels = true;
} // {
# These attributes are passed to `buildPythonApplication`.
pname = "app";
version = "0.1.0";
};
default = self.packages.${system}.app;