X-Git-Url: http://git.scottworley.com/hellowebpy/blobdiff_plain/fe7b4edd757c74e9bfc8ba9168505be9cf2bc2ab..86177fdfb5367ed77a71ad50d3c419f41dad62dd:/default.nix diff --git a/default.nix b/default.nix index a223caa..3b3e7af 100644 --- a/default.nix +++ b/default.nix @@ -4,10 +4,10 @@ pkgs.python3Packages.callPackage ({ autopep8, buildPythonPackage, curl, lib, mypy, pylint, }: buildPythonPackage rec { pname = "hellowebpy"; - version = "1.0.1-pre"; + version = "1.0.1"; 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 = {