Unverified Commit 761c9d78 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python312Packages.robotframework: 7.1.1 -> 7.2 (#375022)

parents 83dccd73 a5de10b2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "robotframework-tidy";
  version = "4.15.0";
  version = "4.16.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "MarketSquare";
    repo = "robotframework-tidy";
    tag = version;
    hash = "sha256-PNf0K1+kjijvJ53UCKkC2LyjBJOroDPdtYjcXbRU1VI=";
    hash = "sha256-QTDbxq78p5O5jORyHThUcNx0/VWm0ZRBS8S//Ya9Oig=";
  };

  build-system = with python3.pkgs; [ setuptools ];
+6 −6
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

buildPythonPackage rec {
  pname = "robotframework";
  version = "7.1.1";
  version = "7.2";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -19,10 +19,10 @@ buildPythonPackage rec {
    owner = "robotframework";
    repo = "robotframework";
    tag = "v${version}";
    hash = "sha256-AJMJb8FN+KynxJXI7s7PwyM/+UpXCtWTcRK/fhCg+io=";
    hash = "sha256-G+mmSeTLr6h0e2YCJOpbYaRNZ5M6PXWBYXdn9xGitkM=";
  };

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

  nativeCheckInputs = [ jsonschema ];

@@ -30,11 +30,11 @@ buildPythonPackage rec {
    ${python.interpreter} utest/run.py
  '';

  meta = with lib; {
  meta = {
    changelog = "https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-${version}.rst";
    description = "Generic test automation framework";
    homepage = "https://robotframework.org/";
    license = licenses.asl20;
    maintainers = with maintainers; [ bjornfor ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ bjornfor ];
  };
}