agtest/default.nix

10 lines
228 B
Nix
Raw Normal View History

2021-10-01 18:16:51 +00:00
{ buildPythonApplication, nix-gitignore, lark-parser, click }:
buildPythonApplication {
pname = "agtest";
version = "0.1.0";
propagatedBuildInputs = [ lark-parser click ];
src = nix-gitignore.gitignoreSource [] ./.;
}