flake-template-hell/templates/python/flake/package.nix

17 lines
281 B
Nix
Raw Normal View History

2025-03-01 23:20:20 +00:00
{
python3Packages
}: let
ps = python3Packages;
in ps.buildPythonApplication {
pname = "sm64pcport-for-dummies";
version = "2025.03";
src = builtins.filterSource (path: _: baseNameOf path != ".git") ../.;
pyproject = true;
build-system = [
ps.setuptools
];
}