11 buildPythonPackage rec {
13 version = "2022.7.27";
15 src = fetchFromGitHub {
19 hash = "sha256-VQn+Uzp6oGSit8ot0e8B0C2N41Q8+J+o91skyVN1gDA=";
23 # for some reason, REMI already deal with these using try blocks, but they fail
24 substituteInPlace test/test_widget.py \
26 "from html_validator import " \
27 "from .html_validator import "
28 substituteInPlace test/test_examples_app.py \
30 "from mock_server_and_request import " \
31 "from .mock_server_and_request import " \
33 "from html_validator import " \
34 "from .html_validator import "
35 # Halves number of warnings
36 substituteInPlace test/test_*.py \
38 "self.assertEquals(" \
49 pythonImportsCheck = [
56 description = "Pythonic, lightweight and websocket-based webui library";
57 homepage = "https://github.com/rawpython/remi";
58 license = with licenses; [ asl20 ];
59 maintainers = with maintainers; [ pbsds ];