nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchPypi, buildPythonPackage
2, traits, apptools
3, ipykernel
4}:
5
6buildPythonPackage rec {
7 pname = "envisage";
8 version = "4.7.2";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0jb5nw0w9x97jij0hd3d7kfzcj58r1cqmplmdy56bj11dyc4wyc9";
13 };
14
15 propagatedBuildInputs = [ traits apptools ];
16
17 preCheck = ''
18 export HOME=$PWD/HOME
19 '';
20
21 checkInputs = [
22 ipykernel
23 ];
24
25 doCheck = true;
26
27 meta = with stdenv.lib; {
28 description = "Framework for building applications whose functionalities can be extended by adding 'plug-ins'";
29 homepage = https://github.com/enthought/envisage;
30 maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
31 license = licenses.bsdOriginal;
32 };
33}