lol

Merge pull request #187786 from anthonyroussel/robotsuite-fix

python310Packages.robotsuite: fix failing build

authored by

Fabian Affolter and committed by
GitHub
34fcb7ec 573c3b6d

+19 -9
+19 -9
pkgs/development/python-modules/robotsuite/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , unittest2, lxml, robotframework 3 }: 4 5 buildPythonPackage rec { ··· 11 sha256 = "sha256-iugVKUPl6HTTO8K1EbSqAk1fl/fsEPoOcsOnnAgcEas="; 12 }; 13 14 - buildInputs = [ unittest2 ]; 15 - propagatedBuildInputs = [ robotframework lxml ]; 16 17 - postPatch = '' 18 - substituteInPlace setup.py \ 19 - --replace robotframework-python3 robotframework 20 - ''; 21 22 meta = with lib; { 23 description = "Python unittest test suite for Robot Framework"; 24 homepage = "https://github.com/collective/robotsuite/"; 25 - license = licenses.gpl3; 26 }; 27 }
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , unittest2 5 + , lxml 6 + , robotframework 7 + , pytestCheckHook 8 }: 9 10 buildPythonPackage rec { ··· 16 sha256 = "sha256-iugVKUPl6HTTO8K1EbSqAk1fl/fsEPoOcsOnnAgcEas="; 17 }; 18 19 + buildInputs = [ 20 + unittest2 21 + ]; 22 23 + propagatedBuildInputs = [ 24 + robotframework 25 + lxml 26 + ]; 27 + 28 + checkInputs = [ 29 + pytestCheckHook 30 + ]; 31 32 meta = with lib; { 33 description = "Python unittest test suite for Robot Framework"; 34 homepage = "https://github.com/collective/robotsuite/"; 35 + license = licenses.gpl3Only; 36 }; 37 }