summary refs log tree commit diff
path: root/pkgs/development/python-modules/envisage/default.nix
blob: ba3e6a0c636dde937a341afa6becf7a87130c0f2 (plain) (blame)
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
{ stdenv, fetchPypi, buildPythonPackage
, traits, apptools
, ipykernel
}:

buildPythonPackage rec {
  pname = "envisage";
  version = "4.7.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0jb5nw0w9x97jij0hd3d7kfzcj58r1cqmplmdy56bj11dyc4wyc9";
  };

  propagatedBuildInputs = [ traits apptools ];

  preCheck = ''
    export HOME=$PWD/HOME
  '';

  checkInputs = [
    ipykernel
  ];

  doCheck = true;

  meta = with stdenv.lib; {
    description = "Framework for building applications whose functionalities can be extended by adding 'plug-ins'";
    homepage = "https://github.com/enthought/envisage";
    maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
    license = licenses.bsdOriginal;
  };
}