Files
nixpkgs/pkgs/development/python-modules/orange-canvas-core/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

67 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, anyqt
, cachecontrol
, commonmark
, dictdiffer
, docutils
, filelock
, lockfile
, numpy
, pytest-qt
, pytestCheckHook
, qasync
, qt5
, requests-cache
}:
buildPythonPackage rec {
pname = "orange-canvas-core";
version = "0.1.35";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-xLCwjeNDx9RqxlNkIWMo0Pcrg7akGuu4Rv9oRDgOK18=";
};
propagatedBuildInputs = [
anyqt
cachecontrol
commonmark
dictdiffer
docutils
filelock
lockfile
numpy
qasync
requests-cache
];
pythonImportsCheck = [ "orangecanvas" ];
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 = [
"orangecanvas/canvas/items/tests/test_graphicstextitem.py"
];
meta = {
description = "Orange framework for building graphical user interfaces for editing workflows";
homepage = "https://github.com/biolab/orange-canvas-core";
license = [ lib.licenses.gpl3 ];
maintainers = [ lib.maintainers.lucasew ];
};
}