Merge pull request #739 from mayl/template_devshell

Adds a devshell to template which includes poetry
This commit is contained in:
adisbladis 2022-10-04 14:24:53 +13:00 committed by GitHub
commit 6853b060f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,5 +30,11 @@
};
defaultApp = pkgs.myapp;
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
(python310.withPackages (ps: with ps; [ poetry ]))
];
};
}));
}