templates/python/default.nix

10 lines
130 B
Nix
Raw Normal View History

2023-02-07 14:55:16 -05:00
{ python3 }:
2023-02-07 13:46:57 -05:00
python3.pkgs.buildPythonApplication {
pname = "soe-python";
version = "1.0";
src = ./.;
doCheck = false;
}