From b4f6be8605dc6f5b82e3d1778a76932e33d6c9ad Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 26 Jan 2024 09:35:00 -0800 Subject: [PATCH] =?utf8?q?Follow=20nixpkgs=20rename:=20checkInputs=20?= =?utf8?q?=E2=86=92=20nativeCheckInputs?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Changelog | 5 ++++- default.nix | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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 = { -- 2.44.1