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

This commit is contained in:
Nick Cao
2025-01-19 12:03:20 -05:00
committed by GitHub
2 changed files with 8 additions and 8 deletions
@@ -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 ];
@@ -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 ];
};
}