mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, matplotlib
|
|
, python-snap7
|
|
, opencv4
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "remi";
|
|
version = "2022.7.27";
|
|
|
|
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 \
|
|
"from html_validator import " \
|
|
"from .html_validator import "
|
|
substituteInPlace test/test_examples_app.py \
|
|
--replace \
|
|
"from mock_server_and_request import " \
|
|
"from .mock_server_and_request import " \
|
|
--replace \
|
|
"from html_validator import " \
|
|
"from .html_validator import "
|
|
# Halves number of warnings
|
|
substituteInPlace test/test_*.py \
|
|
--replace \
|
|
"self.assertEquals(" \
|
|
"self.assertEqual("
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|