Unverified Commit f3d55dbf authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #230752 from fabaff/inql-fix

inql: fix invalid version specifier
parents ac0631ed 03bdcc50
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -11,9 +11,15 @@ python3.pkgs.buildPythonApplication rec {
    owner = "doyensec";
    repo = pname;
    rev = "refs/tags/v${version}";
    sha256 = "sha256-DFGJHqdrCmOZn8GdY5SZ1PrOhuIsMLoK+2Fry9WkRiY=";
    hash = "sha256-DFGJHqdrCmOZn8GdY5SZ1PrOhuIsMLoK+2Fry9WkRiY=";
  };

  postPatch = ''
    # To set the version a full git checkout would be needed
    substituteInPlace setup.py \
      --replace "version=version()," "version='${version}',"
  '';

  propagatedBuildInputs = with python3.pkgs; [
    stickytape
  ];
@@ -28,6 +34,7 @@ python3.pkgs.buildPythonApplication rec {
  meta = with lib; {
    description = "Security testing tool for GraphQL";
    homepage = "https://github.com/doyensec/inql";
    changelog = "https://github.com/doyensec/inql/releases/tag/v${version}";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ fab ];
  };