X-Git-Url: http://git.scottworley.com/nix-pin-deps/blobdiff_plain/ac783e5803ab562c1b7ce17b1b4ab6b5af95006d..HEAD:/default.nix diff --git a/default.nix b/default.nix index 7be4d9c..9beabfb 100644 --- a/default.nix +++ b/default.nix @@ -3,11 +3,17 @@ pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, autopep8, mypy, pylint, }: buildPythonPackage rec { pname = "nix-pin-deps"; - version = "1.0.0"; + version = "1.1.0"; src = lib.cleanSource ./.; - checkInputs = [ mypy ] ++ lib.optionals lint [ autopep8 pylint ]; + nativeCheckInputs = [ mypy ] ++ lib.optionals lint [ autopep8 pylint ]; doCheck = true; checkPhase = '' ./test.sh ${lib.optionalString lint "lint"} ''; + meta = { + description = "GC-pin dependencies of a partially-built derivation"; + homepage = "https://git.scottworley.com/nix-pin-deps"; + license = pkgs.lib.licenses.gpl3; + maintainers = with pkgs.lib.maintainers; [ chkno ]; + }; }) { }