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

Merge pull request #314008 from fabaff/faraday-agent-parameters-types-bump

python312Packages.faraday-agent-parameters-types: 1.5.1 -> 1.6.0, python312Packages.faraday-plugins: 1.17.0 -> 1.18.0
parents f1fcf7cd 1c64a2fb
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@

buildPythonPackage rec {
  pname = "faraday-agent-parameters-types";
  version = "1.5.1";
  version = "1.6.0";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "faraday_agent_parameters_types";
    inherit version;
    hash = "sha256-Bh1s0IeUEa4EnGElQn5ruBxFSbcOqsrDqbw1nVjdi5s=";
    hash = "sha256-yw4u1xhfY9WYLSf9CNAsiDpY7y2Llf8j4gDoNZjACw0=";
  };

  postPatch = ''
@@ -27,9 +27,9 @@ buildPythonPackage rec {
      --replace-warn '"pytest-runner",' ""
  '';

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    marshmallow
    packaging
  ];
@@ -50,7 +50,7 @@ buildPythonPackage rec {
    description = "Collection of Faraday agent parameters types";
    homepage = "https://github.com/infobyte/faraday_agent_parameters_types";
    changelog = "https://github.com/infobyte/faraday_agent_parameters_types/blob/${version}/CHANGELOG.md";
    license = with licenses; [ gpl3Plus ];
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ fab ];
  };
}
+7 −7
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@

buildPythonPackage rec {
  pname = "faraday-plugins";
  version = "1.17.0";
  version = "1.18.0";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -29,17 +29,17 @@ buildPythonPackage rec {
    owner = "infobyte";
    repo = "faraday_plugins";
    rev = "refs/tags/${version}";
    hash = "sha256-EE61RPantD1u9NNhyPRjoRkBifM3u16b0BC2aQC8UBA=";
    hash = "sha256-oYE7Iik0+CbOfxF9IeeZotpGqV8TTz15MxJEC4VBrhk=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace-warn "version=version," "version='${version}',"
      --replace-fail "version=version," "version='${version}',"
  '';

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    beautifulsoup4
    click
    colorama
@@ -73,10 +73,10 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Security tools report parsers for Faraday";
    mainProgram = "faraday-plugins";
    homepage = "https://github.com/infobyte/faraday_plugins";
    changelog = "https://github.com/infobyte/faraday_plugins/releases/tag/${version}";
    license = with licenses; [ gpl3Only ];
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ fab ];
    mainProgram = "faraday-plugins";
  };
}