]> git.scottworley.com Git - rfc1751/commitdiff
nixpkgs 25.11 pyproject boilerplate main
authorScott Worley <scottworley@scottworley.com>
Mon, 18 May 2026 05:49:00 +0000 (22:49 -0700)
committerScott Worley <scottworley@scottworley.com>
Mon, 18 May 2026 05:49:00 +0000 (22:49 -0700)
Changelog
default.nix

index bf27b835b61753e3b9cd98fb5c1965f639607dd6..ff10751478b620b4ea0641f77106dfe4821db6b5 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,5 @@
 ## [Unreleased]
 ## [Unreleased]
+- nixpkgs 25.11 pyproject boilerplate
 
 
 ## [1.0.0] - 2024-02-14
 
 
 ## [1.0.0] - 2024-02-14
index 2374f72e9c47e707ac8807a0ffb5869a7cb4bc7a..87d0ca35a456b0b809f2b60fbcd88ed78834521c 100644 (file)
@@ -9,11 +9,14 @@ pkgs.python3Packages.callPackage (
     mypy,
     autopep8,
     pylint,
     mypy,
     autopep8,
     pylint,
+    setuptools,
   }:
   buildPythonPackage rec {
     pname = "rfc1751";
     version = "1.0.0";
     src = lib.cleanSource ./.;
   }:
   buildPythonPackage rec {
     pname = "rfc1751";
     version = "1.0.0";
     src = lib.cleanSource ./.;
+    pyproject = true;
+    build-system = [ setuptools ];
     nativeCheckInputs = [
       mypy
     ]
     nativeCheckInputs = [
       mypy
     ]