]> git.scottworley.com Git - hellowebpy/commitdiff
Follow nixpkgs rename: checkInputs → nativeCheckInputs
authorScott Worley <scottworley@scottworley.com>
Fri, 26 Jan 2024 17:35:00 +0000 (09:35 -0800)
committerScott Worley <scottworley@scottworley.com>
Fri, 26 Jan 2024 17:35:00 +0000 (09:35 -0800)
Changelog
default.nix

index a9e9056d5a89a61c5f8409d53b9ee3d4325a1e9e..8dc695bbd24ea70d34fabb07349de7ab4c80c9b1 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,6 @@
-## [1.0.0] - 2023-04-04
+## Unreleased
+- Follow nixpkgs rename: checkInputs → nativeCheckInputs
+
 
+## [1.0.0] - 2023-04-04
 Initial release
index a223caaf8675c1a687658e42a1d6900f7d786daa..8bc58a30e78e6af30b6955b57acb2363af032707 100644 (file)
@@ -7,7 +7,7 @@ pkgs.python3Packages.callPackage
     version = "1.0.1-pre";
     src = lib.cleanSource ./.;
     PIP_DISABLE_PIP_VERSION_CHECK = 1;
-    checkInputs = [ curl mypy ] ++ lib.optionals lint [ autopep8 pylint ];
+    nativeCheckInputs = [ curl mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
     checkPhase = "./test.sh";
     meta = {