mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +00:00
![Fabian Affolter](/assets/img/avatar_default.png)
Diff: https://github.com/MarketSquare/robotframework-tidy/compare/4.11.0...4.13.0 Changelog: https://github.com/MarketSquare/robotframework-tidy/blob/main/docs/releasenotes/4.13.0.rst
43 lines
963 B
Nix
43 lines
963 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "robotframework-tidy";
|
|
version = "4.13.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MarketSquare";
|
|
repo = "robotframework-tidy";
|
|
rev = version;
|
|
hash = "sha256-MCx0J+uZ2LI0K1TrIwJbLVTUTJnLxTvYXUJNtIMsnQU=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
robotframework
|
|
click
|
|
colorama
|
|
pathspec
|
|
tomli
|
|
rich-click
|
|
jinja2
|
|
tomli-w
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Code autoformatter for Robot Framework";
|
|
homepage = "https://robotidy.readthedocs.io";
|
|
changelog = "https://github.com/MarketSquare/robotframework-tidy/blob/main/docs/releasenotes/${version}.rst";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ otavio ];
|
|
mainProgram = "robotidy";
|
|
};
|
|
}
|