pythonPackages.envisage: init at 4.7.2

This commit is contained in:
Josef Kemetmüller 2019-01-31 22:17:30 +01:00 committed by Frederik Rietdijk
parent 7800b2f71a
commit f126f2c9e3
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -2569,6 +2569,8 @@ in {
entrypoints = callPackage ../development/python-modules/entrypoints { };
envisage = callPackage ../development/python-modules/envisage { };
enzyme = callPackage ../development/python-modules/enzyme {};
escapism = callPackage ../development/python-modules/escapism { };