14 buildPythonPackage rec {
19 disabled = pythonOlder "3.6";
22 inherit pname version;
23 hash = "sha256-97GviL86j/8qmsbja7SN6pkp4/YSIEz+lK7WKwMWyeM=";
26 # for the optional dependency ipykernel, only versions < 6 are
27 # supported, so it's not included in the tests, and not propagated
28 propagatedBuildInputs = [
43 disabledTestPaths = lib.optionals (pythonAtLeast "3.10") [
44 # https://github.com/enthought/envisage/issues/455
45 "envisage/tests/test_egg_basket_plugin_manager.py"
46 "envisage/tests/test_egg_plugin_manager.py"
49 pythonImportsCheck = [
54 description = "Framework for building applications whose functionalities can be extended by adding plug-ins";
55 homepage = "https://github.com/enthought/envisage";
56 license = licenses.bsdOriginal;
57 maintainers = with lib.maintainers; [ knedlsepp ];