blob: 8526fd0b8222bbece05739471252b0fdd09d487e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
lib,
apptools,
buildPythonPackage,
fetchPypi,
pyface,
pytestCheckHook,
setuptools,
traits,
traitsui,
}:
buildPythonPackage rec {
pname = "envisage";
version = "7.0.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-1rspOLu0XE7xdmxV7W9sHHK2/OcEaKyfWw780e+MHZc=";
};
build-system = [ setuptools ];
dependencies = [
apptools
pyface
setuptools
traits
traitsui
]
++ apptools.optional-dependencies.preferences;
preCheck = ''
export HOME=$PWD/HOME
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "envisage" ];
meta = {
description = "Framework for building applications whose functionalities can be extended by adding plug-ins";
homepage = "https://github.com/enthought/envisage";
license = lib.licenses.bsdOriginal;
maintainers = [ ];
};
}
|