depot/third_party/nixpkgs/pkgs/development/python-modules/remi/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

66 lines
1.5 KiB
Nix

{
stdenv,
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
matplotlib,
python-snap7,
opencv4,
}:
buildPythonPackage rec {
pname = "remi";
version = "2022.7.27";
pyproject = true;
src = fetchFromGitHub {
owner = "rawpython";
repo = pname;
rev = version;
hash = "sha256-VQn+Uzp6oGSit8ot0e8B0C2N41Q8+J+o91skyVN1gDA=";
};
preCheck = ''
# for some reason, REMI already deal with these using try blocks, but they fail
substituteInPlace test/test_widget.py \
--replace-fail \
"from html_validator import " \
"from .html_validator import "
substituteInPlace test/test_examples_app.py \
--replace-fail \
"from mock_server_and_request import " \
"from .mock_server_and_request import " \
--replace-fail \
"from html_validator import " \
"from .html_validator import "
# Halves number of warnings
substituteInPlace test/test_*.py \
--replace-quiet \
"self.assertEquals(" \
"self.assertEqual("
'';
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
python-snap7
opencv4
matplotlib
];
pythonImportsCheck = [
"remi"
"editor"
"editor.widgets"
];
meta = with lib; {
description = "Pythonic, lightweight and websocket-based webui library";
homepage = "https://github.com/rawpython/remi";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ pbsds ];
};
}