summary refs log tree commit diff
path: root/pkgs/development/python-modules/envisage/default.nix
blob: 397e573a252f560bb35ca23f436a3860f1d37f58 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
{ lib, fetchPypi, fetchpatch, isPy27
, buildPythonPackage
, traits, apptools
, python, ipykernel, ipython
}:

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

  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1srjmkhnz84nz5jd72vdsnc4fn7dd9jr8nyf3hzk6yx1dsn815gd";
  };

  propagatedBuildInputs = [ traits apptools ];

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

  # fix a test failure; should be merged in next release
  patches = [ (fetchpatch {
    url = "https://github.com/enthought/envisage/pull/248/commits/7b6d2dd615d5cb7455b200eb8f37e030bbf4df9e.patch";
    sha256 = "0a3dmbpxwsn1bkjcjv9v7b751rcmppj6hc9wcgiayg4l9r2nrvyh";
  }) ];

  checkInputs = [
    ipykernel ipython
  ];

  checkPhase = ''
    runHook preCheck
    ${python.interpreter} -m unittest
    runHook postCheck
  '';

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