python3Packages.orange-widget-base: init at 4.21.0

Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
lucasew 2023-07-08 14:53:22 -03:00
parent bb83b8f7e1
commit da0c5289cc
2 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,62 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pyqt5
, pyqtwebengine
, matplotlib
, orange-canvas-core
, pyqtgraph
, typing-extensions
, qt5
, pytestCheckHook
, pytest-qt
, appnope
}:
buildPythonPackage rec {
pname = "orange-widget-base";
version = "4.21.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-43JeEdgEb6WS7PySW1x08fn02yl9Q/HwwKo6ojaqiH0=";
};
propagatedBuildInputs = [
matplotlib
orange-canvas-core
pyqt5
pyqtgraph
pyqtwebengine
typing-extensions
] ++ lib.optionals stdenv.isDarwin [
appnope
];
pythonImportsCheck = [ "orangewidget" ];
preCheck = ''
export HOME=$(mktemp -d)
export QT_PLUGIN_PATH="${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix}"
export QT_QPA_PLATFORM_PLUGIN_PATH="${qt5.qtbase.bin}/lib/qt-${qt5.qtbase.version}/plugins";
export QT_QPA_PLATFORM=offscreen
'';
nativeCheckInputs = [
pytest-qt
pytestCheckHook
];
disabledTestPaths = [
"orangewidget/report/tests/test_report.py"
"orangewidget/tests/test_widget.py"
];
meta = {
description = "Implementation of the base OWBaseWidget class and utilities for use in Orange Canvas workflows";
homepage = "https://github.com/biolab/orange-widget-base";
license = [ lib.licenses.gpl3Plus ];
maintainers = [ lib.maintainers.lucasew ];
};
}

View file

@ -7582,6 +7582,8 @@ self: super: with self; {
orange-canvas-core = callPackage ../development/python-modules/orange-canvas-core { };
orange-widget-base = callPackage ../development/python-modules/orange-widget-base { };
orderedmultidict = callPackage ../development/python-modules/orderedmultidict { };
ordered-set = callPackage ../development/python-modules/ordered-set { };