From: Scott Worley Date: Fri, 26 Jan 2024 17:35:00 +0000 (-0800) Subject: Follow nixpkgs rename: checkInputs → nativeCheckInputs X-Git-Tag: v1.0.1~1 X-Git-Url: http://git.scottworley.com/hellowebpy/commitdiff_plain/b4f6be8605dc6f5b82e3d1778a76932e33d6c9ad?hp=fe7b4edd757c74e9bfc8ba9168505be9cf2bc2ab Follow nixpkgs rename: checkInputs → nativeCheckInputs --- diff --git a/Changelog b/Changelog index a9e9056..8dc695b 100644 --- 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 diff --git a/default.nix b/default.nix index a223caa..8bc58a3 100644 --- a/default.nix +++ b/default.nix @@ -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 = {