]> git.scottworley.com Git - srec/commitdiff
25.11: New pyproject boilerplate master
authorScott Worley <scottworley@scottworley.com>
Sat, 1 Aug 2026 22:29:10 +0000 (15:29 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 1 Aug 2026 22:29:10 +0000 (15:29 -0700)
default.nix

index 6fe9f8aad498c1a1c3af5ebc89540db947d4a38b..65571e5428cca4c682da42146ad1d6276a0ea360 100644 (file)
@@ -13,6 +13,7 @@ pkgs.python3Packages.callPackage (
     makeDesktopItem,
     makeWrapper,
     mypy,
+    setuptools,
     pylint,
     pygobject3,
     wrapGAppsHook4,
@@ -23,6 +24,9 @@ pkgs.python3Packages.callPackage (
 
     src = lib.cleanSource ./.;
 
+    pyproject = true;
+    build-system = [ setuptools ];
+
     doCheck = true;
     checkPhase = "./test.sh";