3
0
Fork 0
forked from mirrors/nixpkgs
Robert Schütz 2023-02-02 13:28:31 -08:00
parent 46cb54671f
commit 9aeafd777e

View file

@ -2,7 +2,6 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, fetchpatch
, pytest-mockito
, pytestCheckHook
, robotframework
@ -10,7 +9,7 @@
buildPythonPackage rec {
pname = "robotframework-pythonlibcore";
version = "4.0.0";
version = "4.1.0";
disabled = pythonOlder "3.7";
@ -20,17 +19,9 @@ buildPythonPackage rec {
owner = "robotframework";
repo = "PythonLibCore";
rev = "v${version}";
hash = "sha256-86o5Lh9zWo4vUF2186dN7e8tTUu5PIxM/ZukPwNl0S8=";
hash = "sha256-BgnllONYJjfeKIN8BLfMw1iZrVewtXB1KN8b9KjdtK0=";
};
patches = [
(fetchpatch {
name = "fix-finding-version.patch";
url = "https://github.com/robotframework/PythonLibCore/commit/84c73979e309f59de057ae6a77725ab0f468b71f.patch";
hash = "sha256-zrjsNvXpJDLpXql200NV+QGWFLtnRVZTeAjT52dRn2s=";
})
];
nativeCheckInputs = [
pytest-mockito
pytestCheckHook