mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
python311Packages.robotframework-pythonlibcore: 4.2.0 -> 4.3.0
Diff: https://github.com/robotframework/PythonLibCore/compare/refs/tags/v4.2.0...v4.3.0 Changelog: https://github.com/robotframework/PythonLibCore/blob/refs/tags/v4.3.0/docs/PythonLibCore-4.3.0.rst
This commit is contained in:
parent
38c39f545c
commit
4df5e8249d
1 changed files with 11 additions and 4 deletions
|
@ -2,30 +2,37 @@
|
|||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, pytest-mockito
|
||||
, pytestCheckHook
|
||||
, robotframework
|
||||
, typing-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "robotframework-pythonlibcore";
|
||||
version = "4.2.0";
|
||||
version = "4.3.0";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "robotframework";
|
||||
repo = "PythonLibCore";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-RJTn1zSVJYgbh93Idr77uHl02u0wpj6p6llSJfQVTQk=";
|
||||
hash = "sha256-5ayOQyOhCg4nLpAyH/eQ6NYEApix0wsL2nhJzEXKJRo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-mockito
|
||||
pytestCheckHook
|
||||
robotframework
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue