]> git.scottworley.com Git - nix-env-apps/commitdiff
nixpkgs 25.11 pyproject boilerplate master
authorScott Worley <scottworley@scottworley.com>
Sun, 14 Dec 2025 10:44:08 +0000 (02:44 -0800)
committerScott Worley <scottworley@scottworley.com>
Sun, 14 Dec 2025 10:44:08 +0000 (02:44 -0800)
default.nix

index e30926737602943436110db6a7ec90d1f0a59db0..d742ce308f725c9056ad2fb9223d1c9d853fef21 100644 (file)
@@ -1,13 +1,16 @@
 { pkgs ? import <nixpkgs> { }, lint ? false }:
 pkgs.python3Packages.callPackage ({ autopep8, buildPythonPackage
   , gobject-introspection, gtk4, lib, makeDesktopItem, mypy, pylint, pygobject3
-  , wrapGAppsHook4, }:
+  , setuptools, wrapGAppsHook4, }:
   buildPythonPackage rec {
     pname = "apps";
     version = "1.0.2";
 
     src = lib.cleanSource ./.;
 
+    pyproject = true;
+    build-system = [ setuptools ];
+
     doCheck = true;
     checkPhase = "./test.sh";