depot/third_party/nixpkgs/pkgs/development/tools/karate/default.nix
Default email 87f9c27ba9 Project import generated by Copybara.
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
2023-04-12 14:48:02 +02:00

37 lines
1.2 KiB
Nix

{ lib, stdenvNoCC, fetchurl, jre, makeWrapper }:
stdenvNoCC.mkDerivation rec {
pname = "karate";
version = "1.4.0";
src = fetchurl {
url = "https://github.com/karatelabs/karate/releases/download/v${version}/karate-${version}.jar";
sha256 = "sha256-LTGxS5dsp+UrDzI+eoJJSodShe34KWHWW1QgqnhJawM=";
};
dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
makeWrapper ${jre}/bin/java $out/bin/karate --add-flags "-jar $src"
runHook postInstall
'';
meta = with lib; {
description = "API Test Automation Made Simple";
longDescription = ''
Karate is the only open-source tool to combine API
test-automation, mocks, performance-testing and even UI
automation into a single, unified framework. The BDD syntax
popularized by Cucumber is language-neutral, and easy for even
non-programmers. Assertions and HTML reports are built-in, and
you can run tests in parallel for speed.
'';
homepage = "https://github.com/karatelabs/karate";
changelog = "https://github.com/karatelabs/karate/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ maintainers.kephasp ];
platforms = jre.meta.platforms;
};
}