2021-11-20 19:54:45 +00:00
|
|
|
{ lib
|
|
|
|
, apptools
|
2022-01-13 09:53:55 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-11-20 19:54:45 +00:00
|
|
|
, ipython
|
2022-01-13 09:53:55 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, pythonAtLeast
|
|
|
|
, pythonOlder
|
2021-11-20 19:54:45 +00:00
|
|
|
, setuptools
|
2022-01-13 09:53:55 +00:00
|
|
|
, traits
|
2019-01-31 21:17:30 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "envisage";
|
2021-08-22 03:18:27 +01:00
|
|
|
version = "6.0.1";
|
2022-01-13 09:53:55 +00:00
|
|
|
format = "setuptools";
|
2020-04-13 18:48:53 +01:00
|
|
|
|
2022-01-13 09:53:55 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
2019-01-31 21:17:30 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-22 03:18:27 +01:00
|
|
|
sha256 = "8864c29aa344f7ac26eeb94788798f2d0cc791dcf95c632da8d79ebc580e114c";
|
2019-01-31 21:17:30 +00:00
|
|
|
};
|
|
|
|
|
2021-11-20 19:45:15 +00:00
|
|
|
# for the optional dependency ipykernel, only versions < 6 are
|
|
|
|
# supported, so it's not included in the tests, and not propagated
|
2022-01-13 09:53:55 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
traits
|
|
|
|
apptools
|
|
|
|
setuptools
|
|
|
|
];
|
2019-01-31 21:17:30 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
export HOME=$PWD/HOME
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkInputs = [
|
2021-11-20 19:54:45 +00:00
|
|
|
ipython
|
|
|
|
pytestCheckHook
|
2019-01-31 21:17:30 +00:00
|
|
|
];
|
|
|
|
|
2022-01-13 09:53:55 +00:00
|
|
|
disabledTestPaths = lib.optionals (pythonAtLeast "3.10") [
|
|
|
|
# https://github.com/enthought/envisage/issues/455
|
|
|
|
"envisage/tests/test_egg_basket_plugin_manager.py"
|
|
|
|
"envisage/tests/test_egg_plugin_manager.py"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"envisage"
|
|
|
|
];
|
|
|
|
|
2020-04-13 18:48:53 +01:00
|
|
|
meta = with lib; {
|
2022-01-13 09:53:55 +00:00
|
|
|
description = "Framework for building applications whose functionalities can be extended by adding plug-ins";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/enthought/envisage";
|
2019-01-31 21:17:30 +00:00
|
|
|
license = licenses.bsdOriginal;
|
2022-01-13 09:53:55 +00:00
|
|
|
maintainers = with lib.maintainers; [ knedlsepp ];
|
2019-01-31 21:17:30 +00:00
|
|
|
};
|
|
|
|
}
|